home *** CD-ROM | disk | FTP | other *** search
/ PD ROM 1 / PD ROM Volume I - Macintosh Software from BMUG (1988).iso / Electronic Messages / InfoMac Digests / InfoMac Vol. 6 / InfoMac 6.25 < prev    next >
Encoding:
Text File  |  1988-06-15  |  211.4 KB  |  6,042 lines  |  [TEXT/ttxt]

  1.  5-Mar-88 18:25:48-PST,23299;000000000000
  2. Mail-From: INFO-MAC-REQUEST created at  5-Mar-88 18:01:04
  3. Date:  5 Mar 88 1801-PST
  4. From: Moderators Jon Pugh, Dwayne Virnau, Lance Nakata
  5. Reply-to: INFO-MAC@SUMEX-AIM.Stanford.EDU
  6. Subject: INFO-MAC Digest   V6 #25
  7. To: INFO-MAC@SUMEX-AIM.Stanford.EDU
  8.  
  9.  
  10. INFO-MAC Digest           Sunday, 6 Mar 1988       Volume 6 : Issue 25
  11.  
  12. Today's Topics:
  13.                       Pictures bigger than Memory?
  14.                            MS Fortran ROM call
  15.                           RE: Turbo Pascal Help
  16.                           CopyBits() question.
  17.                       TML Pascal Procedure Pointers
  18.                            LSP on Mac2 Problem
  19.                         MPW-UNIX-COMPATIBLE-MAKE
  20.                      Re: Turbo Pascal Version 1.00A
  21.                      Re: Turbo Pascal Version 1.00A
  22.                   How do you hook a modem to a Mac II?
  23.                 Re: How do you hook a modem to a Mac II?
  24.                        Telecommunication standarts
  25.                            Kermit & Design 2.0
  26.                           Kermitting with a CDC
  27.  
  28.  
  29. ----------------------------------------------------------------------
  30.  
  31. Date: Sun, 28 Feb 88 17:36:24 -0500 (EST)
  32. From: Richard Siegel <rs4u+@andrew.cmu.edu>
  33. Subject: Pictures bigger than Memory?
  34.  
  35.  
  36. I've run into an interesting situation. Under some conditions, when I'm
  37. drawing a picture, I run out of memory. I don't get a bomb 25, and MemError
  38. is still zero, but my picture is empty.
  39.  
  40. My question is, how can I intercept conditions when a picture being drawn
  41. runs out of memory?
  42.  
  43. I suppose it's possible to spool a picture, but some of these turkeys are going
  44. to be huge ( >=150K), and on floppies, one can run out of space quite easily,
  45. which is no better than running out of memory.
  46.  
  47. Thanks in advance.
  48.  
  49.         --Rich
  50.  
  51. ===================================================================
  52. Richard Siegel
  53. Confused Undergrad, Carnegie-Mellon University
  54.  
  55. The opinions stated here do not represent the policies
  56. of Carnegie-Mellon University.
  57.  
  58. Arpa: rich.siegel@andrew.cmu.edu
  59. UUCP: {decvax,ucbvax,sun}!andrew.cmu.edu!rich.siegel
  60. ==================================================================
  61.  
  62. ------------------------------
  63.  
  64. Date: Sun, 28 Feb 88 23:30:55 -0800
  65. From: Dau-Tsuong Lu <zglu%UCI@forsythe.stanford.edu>
  66. Subject: MS Fortran ROM call
  67.  
  68.         I am writing a Fortran program to collect serial data at 9600 baud.
  69. The example program provided with Microsoft Fortran v2.2 doesn't use SerResBuf
  70. to make a bigger buffer, and I couldn't find SerResBuf or anything like that
  71. in the file toolbx.par.  IS there anyway I can make this call?  Thanks in
  72. advance.
  73.  
  74.                                                 George
  75. 29-Feb-88 08:19:20-PST,2329;000000000001
  76.  
  77. ------------------------------
  78.  
  79. Date:       Mon, 29 Feb 88 08:18:35 PST
  80. From: PEPKE%FSU.MFENET@NMFECC.ARPA
  81. Subject: RE: Turbo Pascal Help
  82.  
  83. *EMBERS ON
  84. The Toolbox does not support dotted and dashed lines.  This is a serious
  85. omission and is the single most important difficulty we have found with
  86. getting scientific illustrators to use the Macintosh.
  87.  
  88. What the Toolbox does support is patterned lines, which is not the same
  89. thing at all.  The recent posting by Tim Standish uses patterns to make
  90. something that looks like a dashed line.  The problem with this technique
  91. is that it only works when you know beforehand what the slope of the line
  92. is going to be.  His particular pattern works well for horizontal and
  93. vertical lines but fails for most others.
  94.  
  95. Yes, I know that some programs, such as the new MacDraw II, are capable of
  96. doing dotted and dashed lines.  They, I suspect, decompose the line into
  97. many shorter lines.  Also, MacDraw does not seem to be able to deal with
  98. dashed polygons.  This is not good, as the connectivity information in
  99. polygons can be very important in resolving some of the serious ambiguities
  100. with dashed lines.
  101.  
  102. Dashed lines on the Mac are sort of similar to graphics on the IBM.  You
  103. can do anything you want, but you have to do it yourself.  Some programs do
  104. it well, some do it poorly, and most do nothing.  All can claim to have
  105. "full graphics capability."
  106. *EMBERS OFF
  107.  
  108. Eric Pepke                           pepke%fsu.mfenet@nmfecc.arpa
  109. Supercomputer Computations           pepke%scri.hepnet@lbl-csa2.arpa
  110.    Research Institute                pepke%fsu.bitnet@wiscvm.wisc.edu
  111. Florida State University             "The black paper between a mirror
  112. Tallahassee, FL 32306-4052            breaks my heart that I can't go."
  113.  
  114. Disclaimer: My employers seldom even LISTEN to my opinions.
  115. Meta-disclaimer: Any society that needs disclaimers has too many lawyers.
  116.  
  117. ------------------------------
  118.  
  119. Date: Tue 1 Mar 88 16:38:58-PDT
  120. From: Arman Bernardi <ARMAN@STAR.STANFORD.EDU>
  121. Subject: CopyBits() question.
  122.  
  123.  
  124. Question:  Is there a way to find out if a CopyBits() call worked correctly?
  125.  
  126. I have formed an off-screen pixmap, I draw graphics in it, and then
  127. I want to get a Picture of it (that is, just the pixels), so I call
  128.  
  129.     OpenPicture()
  130.     CopyBits()
  131.     ClosePicture()
  132.  
  133. The offscreen pixmap can be large (512*512 bytes, several hundred KBytes).
  134. I need to make several of these Pictures, so I repeat the above
  135. 3 lines of code.  At some point I will run out of memory space (during
  136. the CopyBits() while the Picture is being made) as more
  137. and more of the Pictures are generated.  How do I check for that ?
  138.  
  139. Thanks for any help.
  140.  
  141. arman@STAR.STANFORD.EDU
  142.  
  143. ------------------------------
  144.  
  145. Date: Thu, 3 Mar 88 11:21 PST
  146. From: Danger Mouse <DM%UWAV4.ACS.WASHINGTON.EDU@forsythe.stanford.edu>
  147. Subject: TML Pascal Procedure Pointers
  148.  
  149. TML Pascal Procedure Pointers.
  150.  
  151. TML Pascal is definately a good, inexpensive compiler for the Mac.  From what
  152. I have read in MacTutor comparing the final code size and speed, TML produces
  153. the best of the standalone Pascals.  (I don't know about MPW Pascal).  Then
  154. again, neither is it the fastest compiling or re-compiling.  However, it is
  155. quite powerful, with some nice features for compiling more than just regular
  156. programs (definition procedures and such), and extensions for Object Pascal.
  157.  
  158. I haven't used MacApp (or tried to). But from what I've read, TML is not able to
  159. compile it at the present time, despite the Object Pascal features, because
  160. while it allows pointers to procedures and functions to be passed to Toolbox
  161. routines for their use, it lacks the ability for the program itself to use them.
  162. I don't know if this is the -only- stumbling block, but I know it is a major
  163. one.
  164.  
  165. The following will explain how to add this ability to your programs. Even if
  166. this does not solve problems with compiling MacApp, I'm sure it will help in a
  167. great many other programs. The solution comes from assembly, naturally. However,
  168. it does not require any knowledge of assembly, or even an assembler. It is
  169. strictly code to be inserted wherever it is needed in the pascal source, and
  170. adds only 4 bytes of code per actual call.
  171.  
  172. Credit is due in great part to David Phillip Oster at Berkeley for first solving
  173. the problem with a .REL glue file, Christmas '85.
  174.  
  175. When a program calls a procedure, it pushes all the parameters in order on to
  176. the run-time stack (first clearing space for a return value if it is a function
  177. call), then pushes the return address and jumps to the routine. Oster was keen
  178. enough to realize that if the last argument of a procedure was a pointer to a
  179. procedure, he could pop the return address, pop the last argument, push the
  180. return address back on, and jump to the location specificed by the last argument
  181. (the procedure pointer). His method required a small amount of assembly, and
  182. therefore an MDS compatible assembler to do it. At the time, TML Pascal only
  183. supported INLINEs of two bytes. With TML 2.x though, you can put in more than
  184. two bytes. So I assembled the little bit of code, and put it in INLINEs. At
  185. first the idea didn't work, but I was pleasantly surprised to find out that what
  186. was actually required was even less than the code given.
  187.  
  188. If you use INLINE, TML will push the parameters onto the stack and place the
  189. constants in the code. It doesn't do anything with jumping or return addresses
  190. for INLINE as it does with EXTERNAL. Therefore, all that was needed was to pop
  191. the last argument off, and JumpSubRoutine to it. It meant that there would
  192. inherently be 4 bytes of useless code for each call -- TML pushing the last
  193. parameter on the stack, you immediately popping it off again. However, when all
  194. was said and done, it worked excellently, was easy to implement, and will
  195. certainly fill the void quite well until TML gets around to adding the ability
  196. to their compiler.
  197.  
  198. {   ____________
  199.    / The Danger \
  200.  _/  Mouse File  \____________________________________________________________
  201. | \______________/ _________________________________________________________  |
  202. |                                                                           | |
  203. | |  This is a sample program illustrating the use of TML Pascal INLINEs to | |
  204. | | gain use of procedural parameters completely within Pascal -- no .REL   | |
  205. | | file or assembly is needed.                                             | |
  206. | |                                                                         | |
  207. | |  Author : Ryan Beegle  /  David Phillip Oster                           | |
  208. | |  Date   : Feb 88       /  Dec 85                                        | |
  209. | |                                                                         | |
  210. | |  Distribution : In the Public Domain.                                   | |
  211. | |_________________________________________________________________________| |
  212. |_____________________________________________________________________________|}
  213.  
  214. program DangerProcedures(Input, Output);
  215.  
  216. function DangerMouse(x,y : integer) : Str255;
  217. begin
  218.  DangerMouse := '.)';
  219. end;
  220.  
  221. function DangerFrappe(a,b : integer) : Str255;
  222. begin
  223.  DangerFrappe := 'Whrrrrrrrr';
  224. end;
  225.  
  226. procedure DangerCamel(var min, mid, humps : byte);
  227. begin
  228.  humps := 2;
  229. end;
  230.  
  231. procedure DangerMcglk(var hi, lo, wacky : byte);
  232. begin
  233.  wacky := ord(true);
  234. end;
  235.  
  236. { Having built up an assortment of procedures and functions, we'll make some
  237.   use of them. The following procedure takes four parameters, two of which are
  238.   procedure/function pointers. Note that PASSing the pointers is just as with
  239.   any other pointer. Any number of them, anywhere in the parameter list.      }
  240.  
  241. procedure DangerWorld(option, option2 : integer; StrFunc, ByteProc : ProcPtr);
  242. var
  243.   a,b,c : byte;
  244.  
  245. { There won't be checking to make sure the procedure pointers are the same as
  246.   those we are assuming to be passed within this procedure. Since the INLINE
  247.   procedures can be declared anywhere -- global or local -- I put them here,
  248.   near the parameter list. It allows you to do some visual checking of your own
  249.   to make sure you know what type of parametered procedure or function is
  250.   being expected.                                                              }
  251.  
  252.   function DoStrFunc(i1, i2 : integer; theFunc : ProcPtr) : Str255;
  253.    INLINE $205F,  { MOVE.L (SP)+,A0 }
  254.           $4E90;  { JSR    (A0)     }
  255.  
  256.   procedure DoByteProc(var b1, b2, b3 : byte; theProc : ProcPtr);
  257.    INLINE $205F, 4E90;
  258.  
  259. begin
  260.  
  261.  if option = 0 then
  262.   writeln( DoStrFunc(0, 2, StrFunc) );
  263.  
  264.  if option2 = 0 then
  265.   DoByteProc(a, b, c, ByteProc);
  266.  
  267. { As above, calls to the procedure pointers are made by passing the desired
  268.   parameters to your custom INLINE procedure, plus the pointer itself.         }
  269.  
  270. end;
  271.  
  272. { Finally, with the above declared, you can pass what procedures you want, and
  273.   it will work just as though you were passing them to Toolbox routines.       }
  274.  
  275. begin
  276.  
  277.   DangerWorld(0, 0, @DangerMouse, @DangerMcglk);
  278.  
  279.   DangerWorld(1, 0, @DangerFrappe, @DangerCamel);
  280.  
  281. end.
  282.  
  283. {  -- Danger Mouse. }
  284.  
  285. ------------------------------
  286.  
  287. Date: Thu, 3 Mar 88 14:33 EDT
  288. From: <LMLARS01%ULKYVX.BITNET@forsythe.stanford.edu>
  289. Subject: LSP on Mac2 Problem
  290.  
  291. I have a problem running within the LSP environment on a Mac2 which I have not
  292. seen on my SE. When I repeatedly run a project within the environment, it will
  293. run normally every time, but will always eventually crash the environment
  294. with a system error #01. It seems to me that LSP is not cleaning up after
  295. the program exits and runs out of space.
  296.  
  297. I have tested this with a program which does nothing more than open the
  298. LSP drawing window, put a diagonal line across it and then terminate. It
  299. runs exactly seven times. After the seventh run, when I try to close the
  300. drawing window with the mouse, I see the bomb.
  301.  
  302. (I have already tried redownloading the 1.11 upgrade file from Think
  303. and reupgrading my 1.0 version. It didn't help.)
  304.  
  305. Lee Larson
  306. LMLARS01@ulkyvx.bitnet
  307.  
  308. ------------------------------
  309.  
  310. Date: Thu, 3 Mar 88 13:19:07 PST
  311. From: Mark Richer <RICHER@SUMEX-AIM.Stanford.EDU>
  312. Subject: MPW-UNIX-COMPATIBLE-MAKE
  313.  
  314. Last year a Make tool for MPW that is unix compatible was posted to info-mac
  315. by someone named reid (rae@unicus.com), but .SUFFIXES was not working. He
  316. has informed me that it still isn't working at his site, but that he did
  317. post sources to some people. In any case, has anyone fixed .SUFFIXES or
  318. have another Make tool that is unix-compatible.  With the introduction of
  319. A/UX this becomes even more important (maybe Apple will support a version
  320. themselves?).
  321.  
  322. Mark
  323.  
  324. ------------------------------
  325.  
  326. Date: Mon, 29 Feb 88 09:42:53 EST
  327. From: Bull <WCD%VTVM1.BITNET@forsythe.stanford.edu>
  328. Subject: Re: Turbo Pascal Version 1.00A
  329.  
  330. In response to Dan Stewart's problems with Turbo Pascal and MultiFinder,
  331. a new version of TP won't help. I got the latest (1.1) 2 weeks ago, and
  332. it's incompatible with MultiFinder too. There's a message in the ReadMe
  333. file that says only compiled (to disk) can be run under MultiFinder, and
  334. that one should NOT work in the integrated TP environment under MultiFinder.
  335. There is no hint as to the problem.
  336. Bull
  337.  
  338. ------------------------------
  339.  
  340. Date: 29 Feb 88 08:33 PST
  341. From: newman.pasa@Xerox.COM
  342. Subject: Re: Turbo Pascal Version 1.00A
  343.  
  344. You can upgrade to the newer version of Turbo Pascal pretty easily.  Just give
  345. Borland a call, and they will give you the instructions.  The cost was pretty
  346. reasonable - only $15 - and the newer version includes interfaces for the MAC
  347. II.
  348.  
  349. >>Dave
  350.  
  351. ------------------------------
  352.  
  353. Sender: "Bruce_A._Hamilton.OsbuSouth"@Xerox.COM
  354. Date: 1 Mar 88 17:50:16 PST (Tuesday)
  355. Subject: How do you hook a modem to a Mac II?
  356. From: "Bruce_Hamilton.OsbuSouth"@Xerox.COM
  357. Reply-to: Hamilton.OsbuSouth@Xerox.COM
  358.  
  359.  
  360. A group down the hall just got a Mac II from Interleaf with an 80MB hard disk,
  361. single 3.x" floppy, and extended keyboard.  Not knowing much about Macs, I
  362. started looking through the manuals, starting with the index.  The only
  363. reference to RS232 was to be careful NOT to stick an RS232 plug into the SCSI
  364. interface in back.
  365.  
  366. So how do you hook a vanilla modem onto this thing, and what software do I need?
  367. Basically, I'd just like to be able to read a Mac disk and then stuff ASCII over
  368. a phone line into another system.  Some of the literature makes vague reference
  369. to an Apple modem (which we don't have), but doesn't say how it plugs in.
  370.  
  371. I'll collect, summarize, and rebroadcast interesting replies.
  372.  
  373. Thanks,
  374.  
  375. --Bruce
  376.  
  377. ------------------------------
  378.  
  379. Sender: "Bruce_A._Hamilton.OsbuSouth"@Xerox.COM
  380. Date: 2 Mar 88 15:11:03 PST (Wednesday)
  381. Subject: Re: How do you hook a modem to a Mac II?
  382. From: "Bruce_Hamilton.OsbuSouth"@Xerox.COM
  383. Reply-to: Hamilton.OsbuSouth@Xerox.COM
  384.  
  385.  
  386. You guys are great!  Thanks to Dave <newman:PASA>, Frank H. Bowers:OSBU North,
  387. GUILLERMO <GLAO:ES>, Gerry Tsupros:StLouis Region, Nick <NNicoll:El Segundo>,
  388. Victor J. Heintz:wbst139, Josh <Susser:PASA>, Kurt <Piersol:PASA>, Clark R.
  389. Hodge:OSD Associates, Stephen W. Bartlett:OSBU South.  Below are some collected
  390. responses, editing out redundant info.
  391.  
  392. ----------------
  393. The Mac II actually has two serial ports. They are on the back and have the
  394. funny phone and printer icons over them. To connect a modem to your Mac II (or
  395. plus, SE, etc), you need to get a "Mac Plus to Hayes Modem" cable. This cable
  396. has a DIN-8 connector on one end and a DB-9 on the other. One end goes into the
  397. Mac phone serial port, and the other goes into the modem. We got ours at
  398. Egghead, but I've seen them all over. They run $20 to $30 depending on cable
  399. length.
  400.  
  401. There are several good telecommunications programs available for the Mac. You
  402. probably want to get one that is Multifinder compatible, and you definitely want
  403. one that is Mac II compatible. Be careful, not all software runs on the Mac II.
  404. I use MicroPhone and it does okay. I have a friend who swears by RedRyder.
  405. VersaTerm pro is supposed to be pretty good as well, but it's expensive.
  406.  
  407. ---------
  408. As for software, let me recommend Red Ryder 10.3 as excellent software for
  409. anyone with serious communications requirements: It supports XMODEM, YMODEM,
  410. Kermit, MacBinary, baud rates up to 9600, emulates VT100, and has a command
  411. language which literally does just about anything you want. It costs about $60,
  412. I believe. It's by far the best unless you have some particular graphics
  413. emulation needs. If you need it to act like a Tektronix terminal, I understand
  414. that Versaterm is really very good for that sort of thing.
  415.  
  416. ---------
  417.  
  418. Modems hook to a serial port on any MAC.  Mac II or otherwise.  My Mac SE has a
  419. port on the back that is the little mini-8 port labelled as the modem port.  In
  420. any case, the serial port is the ticket whether it is a mini-8, a DB-9 or
  421. standard 25-pin socket.  All that is needed is a standard modem and an adapter
  422. cable.  The apple modem comes with the same kind of connector, so my cable looks
  423. pretty much the same on both ends.  Other modems are different.
  424.  
  425. I use Red Ryder software.  Version 9.4 was the last shareware version, and
  426. version 10.3 is the most recent version.  Its nice, and it is relatively cheap.
  427. Microphone gets pretty good reviews, but my colleagues at work find it a poor
  428. second to Red Ryder.  There are other software packages, but I recommend Red
  429. Ryder.
  430.  
  431. As for modems, my apple modem is nice, and it is compact, but it does not have a
  432. power switch, and only goes to 1200 baud.  There are cheap 2400 baud modems
  433. available now, and if I were buying now, I'd get one of those.
  434.  
  435. ---------
  436. Mac (plain vanilla) has an RS422 connector labeled with a cute little icon
  437. meaning modem.  Use an 8-pin mini DIN to 25-pin D-Shell cable to convert to
  438. RS232C.  I bought such a "Mac II to Smartmodem" cable for $15 from a Mac dealer
  439. that works fine.
  440.  
  441. ---------
  442. I can tell you how I made a cable for a MacPlus.  I'll assume that you are
  443. looking at the round male 8-pin connector which plugs into the Mac and the pins
  444. are numbered left to right as so:
  445.  1  2  3                     Mac 8-pin      RS232 25-pin
  446. 4  5    6                      1,2,3,7               NC
  447.    7  8                              4                      2  (transmit)
  448.                                         5                      1 & 7
  449. (protective & signal grounds)
  450.                                         6                      3  (receive)
  451.                                         8                      20 (DTR)
  452.  
  453. ---------
  454.  
  455. --Bruce
  456.  
  457. ------------------------------
  458.  
  459. From: JURGEN%UMass.BITNET@forsythe.stanford.edu
  460. Date: Sun, 28 Feb 88  17:14:47 EST
  461. Subject: Telecommunication standarts
  462.  
  463. In INFO-MAC Digest V6 #24 magill@eniac.seas.upenn.edu writes...
  464.  
  465. > There appear to be many parity problems in the 9(36)b4 version. And judging
  466. > by the comments in the Doc file, it appears that the authors do not
  467. > understand communications encodings and their implecations in their various
  468. > manifestations.
  469.  
  470. Good point!  Maybe they really don't understand these things.  Certainly
  471. I don't, even though I have written several simple programs that use them.
  472.  
  473. Which brings me to my question... WHERE ARE THESE THINGS DOCUMENTED?!?!
  474. It seems that all the encodings used into computer telecommunications today
  475. evolved slowly out of necessity, but have never been clearly defined any-
  476. where.  Is there any good literature out there that summarizes telecomm-
  477. unications standarts, encodings, issues, and effects thereof?
  478.  
  479. If anyone can point me to available literature, or even better, has liter-
  480. ature available in electronic form, I would GREATLY appreciate it.  Please
  481. reply in private, I will summarize to the net.
  482.  
  483.   Jurgen E Botz
  484.   Jurgen@UMass.Bitnet
  485.  
  486. ------------------------------
  487.  
  488. Date: Mon, 29 Feb 88 13:02:39 PST
  489. From: digiorgi@VLSI.JPL.NASA.GOV
  490. Subject: Kermit & Design 2.0
  491.  
  492. Notes: Info-Mac vol 6 number 24.
  493.  
  494. ref: Using  Kermit with ftp downloads :: <tom coradaschi>
  495. While this Kermit solution seems to work on VAX UNIX machines, I cannot
  496. find equivalent functionality in VAX VMS Kermit-32.  Instead, I ftp download
  497. the files to the vax and then do a COPY to concatenate them, i.e.:
  498. >DIRECTORY
  499. DL1.HQX
  500. DL2.HQX
  501. DL3.HQX
  502. >COPY DL*.HQX NEWSTUFF.HQX
  503. >DIRECTORY
  504. DL1.HQX
  505. DL2.HQX
  506. DL3.HQX
  507. NEWSTUFF.HQX
  508. then I download the NEWSTUFF.HQX file to the Mac.  If you are concerned about
  509. corruption of long downloads, MPW has a really efficient CATENATE command
  510. that also works very effectively after downloading the parts to the Mac.
  511.  
  512. ref: Design 2.0  :: <Mandel@BCO-MULTICS.ARPA>
  513. I have had and been using DESIGN 2.0 for a bit, and it is really quite a
  514. lot better then the v1.0 demo that's out there.  My only real complaints
  515. with it are the extreme modality of the program, which makes some operations
  516. very awkward.  But for design drawings, there are those select moments where
  517. none of the other graphics/drafting programs that I have are as effective as
  518. DESIGN.
  519.  
  520. Godfrey DiGiorgi
  521. digiorgi@jpl-vlsi.arpa
  522. February 28, 1988
  523.  
  524. ------------------------------
  525.  
  526. Date: Thu,  03 Mar 88 16:39:17 +0200
  527. From: Jonathan B. Owen <GDAU100%BGUNOS.BITNET@CUNYVM.CUNY.EDU>
  528. Subject: Kermitting with a CDC
  529.  
  530. Hi everyone,
  531.  
  532. Does anyone use MacKermit (0.8-33) to download files from a CDC Cyber?
  533. I am not able to download files (or upload for that matter).  Retries
  534. purtain and when CDC is in Server mode, it does not understand requests
  535. initiated from my Mac.  In short, "No-Communicado".
  536.  
  537. I used the debug option of the CDC's Kermit and apparently, the Mac
  538. sends "# N3" as a response to the Init packet of the CDC.
  539.  
  540. Any ideas?
  541.  
  542. Any help is appreciated (by me) and rewarded (in heaven!)...
  543. ______________________________________________________________________________
  544.   (--)    /--)     /-(\                 Email: gdau100@bgunos (bitnet)
  545.   \ /    /--K      : \:/\   /\/) /:-\   Snail: 6/15 Mendelson, Tel-Aviv, Israel
  546.   _/_/o /L__)_/o \/\__/  \X/  \_/ : :_/ Voice: 03-5577519
  547.  (/        Jonathan B. Owen
  548.  Point of view:  A chicken is the means by which an egg reproduces an egg.
  549. ______________________________________________________________________________
  550.  
  551. ------------------------------
  552.  
  553. End of INFO-MAC Digest
  554. **********************
  555.  5-Mar-88 18:36:31-PST,28508;000000000000
  556. Mail-From: INFO-MAC-REQUEST created at  5-Mar-88 18:09:31
  557. Date:  5 Mar 88 1809-PST
  558. From: Moderators Jon Pugh, Dwayne Virnau, Lance Nakata
  559. Reply-to: INFO-MAC@SUMEX-AIM.Stanford.EDU
  560. Subject: INFO-MAC Digest   V6 #26
  561. To: INFO-MAC@SUMEX-AIM.Stanford.EDU
  562.  
  563.  
  564. INFO-MAC Digest           Monday, 7 Mar 1988       Volume 6 : Issue 26
  565.  
  566. Today's Topics:
  567.                       Question: Irma & NetWay 1000A
  568.          Ready-Set-Go 4.0 goofs with international character set
  569.                           Mac ][ Sampled Sound
  570.                               MacServe@PUCC
  571.                         Hard disk question ??!!!
  572.                         text retrieval databases
  573.                             Smart Alarms v2.5
  574.                          Color desktop pictures
  575.                      MacDraw hook for Directory FKEY
  576.                 DA-TERMINAL DOCUMENT IS NOT READABLE. ...
  577.          How to translate from POSTSCRIPT into IMPRINT (IMAGEN)?
  578.                        Menu & Window-frame Blanker
  579.                          RE: color lut resoln ?
  580.                   IBM PC emulator for the Macintosh II
  581.                           Humor (from EchoMac)
  582.                         BBS for Mac wired to VAX
  583.                           Request for wargamers
  584.               Bank Checks in LaserWriter II Envelope Feeder
  585.                       appletalk PC driver v2 (long)
  586.                    mac software for foreign languages
  587.                        Screen Slaving and Timbuktu
  588.                    Mac II Footprint (and Noise) Cure?
  589.                               Apache Strike
  590.  
  591.  
  592. ----------------------------------------------------------------------
  593.  
  594. Date: Sat, 27 Feb 88 18:35:55 IST
  595. From: Ami Zakai <RPR1ZAK%TECHNION.BITNET@forsythe.stanford.edu>
  596. Subject: Question: Irma & NetWay 1000A
  597.  
  598. I need all info you folx at net world care to supply about two products
  599. for the Mac, IRMA and something called NETWAY 1000A.
  600. If you seen, have info or happend to use one of them please tell me
  601. about it. Send directly to me (address above), I will summarize if
  602. there will be public interest.
  603.  
  604.   --Zak
  605.  
  606. ------------------------------
  607.  
  608. Date: Sun, 28 Feb 88 16:30:05 DNT
  609. From: Jakob Nielsen  Tech Univ of Denmark
  610. From: <DATJN%NEUVM1.BITNET@forsythe.stanford.edu>
  611. Subject: Ready-Set-Go 4.0 goofs with international character set
  612.  
  613.      Once again: A program that will not allow you to select a
  614. word with double-click if the word contains international characters
  615. (i.e. other than A-Z).
  616.      These guys have not taken my tutorial on designing user interfaces
  617. for international use :-(
  618.  
  619. ------------------------------
  620.  
  621. From: time@citi.umich.edu
  622. Date: 29 Feb 1988 08:00 EST
  623. Subject: Mac ][ Sampled Sound
  624.  
  625. I have attempted all combinations, and must still be missing somthing
  626. *very* simple. I need a program fragment that does sampled sound on
  627. the Mac ][ and is *known* to work. Please mail to:
  628.     time@citi.umich.edu
  629. Thank you, my music thanks you,
  630. Tim Endres
  631.  
  632. ------------------------------
  633.  
  634. Date: Mon, 29 Feb 88 09:50 CST
  635. From: <SPCLAR%MACALSTR.BITNET@forsythe.stanford.edu>
  636. Subject: MacServe@PUCC
  637.  
  638.         Has anyone noticed that MACSERVE@PUCC.BITNET is rather behind in
  639. keeping up with the digests? There hasn't been anything new there since the
  640. earthplot update! Is something wrong on-site, or hasn't anyone bothered to
  641. bring the programs over from Sumex?
  642.         Just wondering,
  643.                 Petey
  644.  
  645.         SPCLAR@MACALSTR.BITNET
  646.  
  647. disclaimer- I haven't anything do disclaim, I didn't say anything!
  648.  
  649. ------------------------------
  650.  
  651. Date: Mon, 29 Feb 88 22:08 EDT
  652. From: <LEE85%SNYBUFVA.BITNET@forsythe.stanford.edu>
  653. Subject: Hard disk question ??!!!
  654.  
  655.    I have a Mac SE and planningto buy a 40 Mb hard disk.  Would anybody
  656. suggest me what is the best buy and where I can get it ???
  657. I will relly appreciate it ....
  658.  
  659. ------------------------------
  660.  
  661. Date: Tue, 01 Mar 88 10:30 EST
  662. From: "Michael Robert Freedberg"                 
  663. From: <MIKEF%UNC.BITNET@forsythe.stanford.edu>
  664. Subject: text retrieval databases
  665.  
  666. I am looking for some information on a program called SONAR
  667. by Virginia Systems Software. It is a text database and text
  668. retrieval system which will work not only on ASCII but Word 3
  669. docs as well. I would appreciate any comments from users of this
  670. program or any like it. I need to search documents for words, phrases,
  671. proximity to other words or phrases, and I need word  counts and
  672. indexing capabilities. SONAR claims to do all this and more, so if
  673. anyone in netland who uses this program or something similar, please
  674. send comments and recomendations to the address posted below. I am
  675. interested in general in text databases for use in the humanities,
  676. so any and all info will be well-considered. Any word as of yet on
  677. the foreign language dics for WordPerfect?
  678. Reply to:
  679. Mikef@unc.bitnet
  680. snappy quote:"Things as they are, are changed on the blue guitar.
  681. Thanks Wally...
  682.  
  683. ------------------------------
  684.  
  685. Date: Tue, 1 Mar 88 11:57 CST
  686. From: Mike Borsetti
  687. From: <MBORSETTI%nuacc.acns.nwu.edu@forsythe.stanford.edu>
  688. Subject: Smart Alarms v2.5
  689.  
  690. I remember seeing a hack (patch?) for Smart Alarms so that it would ring the
  691. bells only at the time the reminder is set (and not every three minutes
  692. afterwards).  This is a very useful patch, because without it your colleague's
  693. nerves would go crazy whenever you are not at your desk to dismiss the alert.
  694.  
  695. Now the problem: I've lost it in a HD crash.
  696.  
  697. Anyone is so kind as to send it to me or re-post it?  Thanks!
  698.  
  699. Disclaimer: I usually *do* back up drives.
  700.  
  701. ------------------------------
  702.  
  703. Date: Tue, 1 Mar 88 13:23:41 PST
  704. From: dplatt@coherent.com (Dave Platt)
  705. Subject: Color desktop pictures
  706.  
  707. Yes, it's quite possible.  You'll need two items:
  708.  
  709. 1) You'll need a resource file that contains a PICT resource (ID=0)
  710.    that is to be drawn.  This can be stored as your StartupScreen file,
  711.    and will be displayed (centered) when you boot.  Customized
  712.    palettes should not be used;  the StartupScreen mechanism apparently
  713.    insists on using the Mac's default CLUT (or so I've heard).  Any
  714.    drawing program that supports color [e.g. the new MacDraw] can be
  715.    used to create a colored drawing;  the drawing can then be copied to
  716.    the Clipboard in PICT format, pasted into the Scrapbook, and then
  717.    moved over to a new resource file with ResEdit.  You could also use
  718.    Giffer to convert a GIF file to PICT 0 format... quite a few GIF
  719.    images have been posted to Info-Mac, and there are apparently many
  720.    more (thousands?) on Compu$erve.
  721.  
  722. 2) There's an INIT called DeskPict (I don't recall whether it's free or
  723.    shareware) that will make the StartupScreen picture, or one found in
  724.    another file [Desktop Picture, or something like that] become a permanent
  725.    screen backdrop.  I _think_ DeskPict is in the Info-Mac archives;  if it's
  726.    not, I'll be glad to post it.
  727.  
  728. I recently posted a color StartupScreen file to Info-Mac... it's a PICT of
  729. Garfield expressing his feelings about Big Blue.  With this, plus DeskPict,
  730. you'd be on your way.
  731.  
  732.  
  733. Dave Platt
  734.   UUCP: ...!{ames,sun,uunet}!coherent!dplatt     DOMAIN: dplatt@coherent.com
  735.     INTERNET: coherent!dplatt@ames.arpa, ...@sun.com, ...@uunet.uu.net
  736.  
  737. ------------------------------
  738.  
  739. Date: Wed, 2 Mar 88 9:46:51 EST
  740. From: John Major <major@SPCINK.BBN.COM>
  741. Subject: MacDraw hook for Directory FKEY
  742.  
  743. Ray Lau's fine Fkey 'Directory' will let you preview files,
  744. if you provide a hook for the file format.  He's done so
  745. for PNTG and TEXT files - anyone out there done a hook for
  746. MacDraw (not PICT) files?  I have a huge mass of them to
  747. sort out, and previewing would be a boon. This would be a
  748. good thing to upload, I think.
  749.  
  750. Thanks, Netland!
  751.  
  752. John Major
  753. major@spcink.bbn.com.ARPA
  754.  
  755. ------------------------------
  756.  
  757. Date: 28 Feb 88 15:06:00 EST
  758. From: "ROBAX::KANG" <kang%robax.decnet@venus.ycc.yale.edu>
  759. Subject: DA-TERMINAL DOCUMENT IS NOT READABLE. ...
  760. Reply-to: "ROBAX::KANG" <kang%robax.decnet@venus.ycc.yale.edu>
  761.  
  762.  
  763. Hello,
  764.  
  765. I just downloaded the DA-TERMINAL. It seems working fine. However,
  766. I cannot figure out how to read the DOC file. Both file type and file creator
  767. are messed up. I tried to set file type to be TEXT or WORD or WDBN and read
  768. it with MacWrite or MS Word. However, it does not work. Can some one tell
  769. me what are the correct file type and creator? What program reads it?
  770.  
  771. I also had problem with the HYPERCARD-ESPERANTO, no matter what I do,
  772. I always have the error message END OF FILE ERROR at the end of decoding the
  773. HQX. Does anyone have the same problem?
  774.  
  775. -- Kang Sun
  776.  
  777. ------------------------------
  778.  
  779. Date: 24 Feb 88 17:31:00 EST
  780. From: "ROBAX::KANG" <kang%robax.decnet@venus.ycc.yale.edu>
  781. Subject: How to translate from POSTSCRIPT into IMPRINT (IMAGEN)?
  782. Reply-to: "ROBAX::KANG" <kang%robax.decnet@venus.ycc.yale.edu>
  783.  
  784. Hello everyone,
  785.     Is there a way to translate from POSTSCRIPT into IMPRINT (IMAGEN)?
  786. -- Kang Sun
  787.  
  788. ------------------------------
  789.  
  790. Date: Wed 2 Mar 88 11:09:35-PDT
  791. From: CURTIS@Pluto.ARC.NASA.GOV
  792. Subject: Menu & Window-frame Blanker
  793.  
  794. Does anyone know of a D/A, INIT, FKEY, or CDEV that will selectively turn off
  795. the menu bar and the window-frame of an application leaving only the image
  796. inside the window visible on the screen?
  797.  
  798. We just purchased a color printer that works by taking a screen dump from
  799. the RGB signals going to the MACII monitor.  This prints everything that's on
  800. the screen.  What we need is just the image *inside* the active window.
  801.  
  802. It would be great if it could also specify an all black or all white
  803. background and work with most applications (Pixel Paint, MORE, MacDraw II).
  804.  
  805. Thanks for any help.
  806.  
  807.     Allen Kirby Curtis    CURTIS@PLUTO.ARC.NASA.GOV
  808.                     or
  809.                 CURTIS@AMES-PLUTO.APRA
  810.  
  811. ------------------------------
  812.  
  813. From: umix!umich!eecs.umich.edu!spline.eecs.umich.edu!spencer@uunet.UU
  814. From: .NET (Spencer W. Thomas)
  815. Subject: RE: color lut resoln ?
  816. Date: 2 Mar 88 15:03:37 GMT
  817. Sender: umix!umich!eecs.umich.edu!news@uunet.UU.NET
  818. Reply-to: umix!umich!eecs.umich.edu!spline.eecs.umich.edu!spencer@uune
  819. Reply-to: t.UU.NET (Spencer W. Thomas)
  820.  
  821.  
  822. Most standard TV monitors have a "gamma" around 2.5 (this is the
  823. standard).  This means that the the brightness (I) on the screen is
  824. proportional to the 2.5 power of the input voltage (V).  When you
  825. speak of the gamma of a monitor (or of an image production chain), it
  826. means that this rule is followed:
  827.     I = V**gamma
  828.  
  829. =Spencer (spencer@crim.eecs.umich.edu)
  830.  
  831. ------------------------------
  832.  
  833. Date: Thu, 3 Mar 88 02:15 N
  834. From: <FRUIN%HLERUL5.BITNET@forsythe.stanford.edu> (Thomas Fruin)
  835. Subject: IBM PC emulator for the Macintosh II
  836.  
  837. Wow!  The British computer monthly PC User reviewed a  prerelease  version
  838. of a _software_PC emulator for the  Macintosh II that actually works. They
  839. favored it higher than the AST Mac286 card, reviewed in the same issue.
  840.  
  841. Soft PC, as it's called, has been developed by  Insignia Solutions, a firm
  842. in Britain.  The software emulates a standard  IBM PC with 8088 processor,
  843. and the color graphics adaptor (CGA), with the color showing on the Mac II
  844. screen of course.  It is only available for the Macintosh II,  because the
  845. emulation would simply run too slow on other Macs.
  846.  
  847. PC User said they had tested popular IBM PC programs such as Lotus, dBASE,
  848. Wordstar 2000 and Microsoft Flight Simulator,  and  said  they ran without
  849. problems.  Programs run in their own window on the  Macintosh desktop, and
  850. data can be copied from PC programs via the  clipboard  into Mac programs.
  851. Pasting data into the PC window was not possible.
  852.  
  853. A 5 1/4 inch drive (such as the one Apple makes,  or one of several third-
  854. party manufacturers) is necessary to read MS-DOS files. The internal 3 1/2
  855. inch drives cannot be used to read 3 1/2 inch MS-DOS floppies,  because of
  856. Apple's variable speed disk control, PC User said. Standard hard disks for
  857. the Macintosh II can be  formatted  with an  MS-DOS  partition that can be
  858. used as drive C: by Soft PC.
  859.  
  860. -- Thomas Fruin
  861.  
  862.    fruin@hlerul5.BITNET                       Leiden University
  863.    thomas@uvabick.UUCP                        University of Amsterdam
  864.    hol0057.AppleLink
  865.    2:500/15.FidoNet                           The Netherlands
  866.  
  867. ------------------------------
  868.  
  869. Date: Thu, 3 Mar 88 21:48 CST
  870. From: Mike Borsetti
  871. From: <MBORSETTI%nuacc.acns.nwu.edu@forsythe.stanford.edu>
  872. Subject: Humor (from EchoMac)
  873.  
  874. From:    Bernard Aboba
  875. To:      All                                      Msg #227, 23-Feb-88 10:35:34
  876. Subject: Refrigerator SIGS, anyone?
  877.  
  878. Why do refrigerators NOT need user groups, pray tell?
  879. First of all, refrigerators generally WORK, and work well.  Their flyback
  880. transformers do not burn out.  They do not require upgrades every year,
  881. whether the basic hardware is obsolete or not.  Refrigerators usually defrost
  882. themselves; their cold solder joints do not give out; they are not sensitive
  883. to power line spikes, or static electricity.
  884. Your average refrigerator has modest design goals.  When you open it, it does
  885. not say "Welcome to the Refrigerator," or blink its lights.  There is probably
  886. a simple control system, no megabyte of RAM.
  887. You do not need your refrigerator to be making toast at the same time it is
  888. keeping your leftovers from spoiling, controlling your VCR, or turning the
  889. front porch lights on and off.
  890. If this seems somewhat obvious consider this:  By 1995 a new automobile will
  891. probably contain the equivalent of a Motorola 68000 processor, and 1 Meg of
  892. RAM.  It may well speak to you, and contain several bit mapped displays.
  893. Almost every component, from the engine to the brake system, will be
  894. microprocessor controlled.  And if those components fail, your vehicle may
  895. lose manuverability, or worse.
  896. Can we be so sure that there will be not be AUTOMOTIVE user groups in 1995?
  897. Or that refrigerator user groups will not some day follow suit?
  898. Here's to a 1973 Buick, and my Kenmore fridge!
  899. Disclaimer:  I have no business relationship with Kenmore, or any other
  900. refrigerator manufacturer.  I am a knowledgeable refrigerator user, but do not
  901. earn my living from giving refrigerator seminars, or from leading the BMUG
  902. refrigerator SIG.
  903.  
  904. ---
  905.  * Origin: MailCom EchoMac InfoHere, Palo Alto 415-855-9548 (Opus 1:143/444)
  906.  
  907. --------------------
  908.  
  909. From:    Robert Holland
  910. To:      Bernard Aboba                            Msg #228, 23-Feb-88 17:23:04
  911. Subject: Re: Refrigerator SIGS, anyone?
  912.  
  913. hey, are you mocking all of us in the BMUG toaster SIG?  Are ya?  Huh?
  914.  
  915. ---
  916.  * Origin: MailCom EchoMac InfoHere, Palo Alto 415-855-9548 (Opus 1:143/444)
  917.  
  918. --------------------
  919.  
  920. From:    Miriam Solon
  921. To:      Bernard Aboba                            Msg #317, 25-Feb-88 13:37:10
  922. Subject: Refrigerator SIGs
  923.  
  924. Your tirade was an instant hit in our coffee room. Hope you get it published.
  925. You're a funny guy.
  926.  
  927. ---
  928.  * Origin: TRoU Mac Base System, 312-784-8763, Chicago, IL (Opus 115/400)
  929.  
  930. --------------------
  931.  
  932. From:    Stephen Howard
  933. To:      Bernard Aboba                            Msg #361, 24-Feb-88 07:10:22
  934. Subject: Re: Refrigerator Sigs, Anyone?
  935.  
  936.  
  937. Maybe you can help me. I just downloaded a can of Black Olives (Collosal, I
  938. think) from my refrigerator. When I tried to open it, the 'fridge told me "A
  939. utensil cannot be found to open this can." What gives? BTW, it says 'NO PITS'
  940. on the side. Thanks in advance.
  941.  
  942. Stephen Howard
  943.  
  944. --- TBBS v2.0
  945.  * Origin: BMUG Multiline TBBS - Berkeley, CA [415] 849-BMUG  (161/444)
  946.  
  947. --------------------
  948.  
  949. From:    Eric Larson
  950. To:      Stephen Howard                           Msg #419, 27-Feb-88 10:02:12
  951. Subject: Re: Refrigerator Sigs, Anyone?
  952.  
  953. You have to run the Olives through CanHex first.
  954.  
  955. ---
  956.  * Origin: Shockwave Rider 315-673-4894 Marcellus, NY (Opus 1:260/330)
  957.  
  958. --------------------
  959.  
  960. From:    Bernard Aboba
  961. To:      Stephen Howard                           Msg #429, 25-Feb-88 08:10:34
  962. Subject: Re: Refrigerator Sigs, Anyone?
  963.  
  964. Your fridge "bug" report was not specific enough.  How do you expect to get
  965. answers without telling me what version refrigerator you are using? It sounds
  966. like an incompatibility with other units residing in the Fridge, or with
  967. Kenmore's new Fridge Input/Output System (FIOS).  Yes, I know we did not
  968. follow the Kenmore guidelines, but it's their fault anyway.  Have you tried
  969. reformatting the Fridge?
  970.  
  971. ---
  972.  * Origin: MailCom EchoMac InfoHere, Palo Alto 415-855-9548 (Opus 1:143/444)
  973.  
  974. --------------------
  975.  
  976. From:    Miriam Solon
  977. To:      Stephen Howard                           Msg #538, 29-Feb-88 17:48:42
  978. Subject: Re: Refrigerator Sigs, Anyone?
  979.  
  980. That means they're stuffed and you need Stuffit.
  981.  
  982. ---
  983.  * Origin: TRoU Mac Base System, 312-784-8763, Chicago, IL (Opus 115/400)
  984.  
  985. ------------------------------
  986.  
  987. Date: Fri, 4 Mar 88 12:24 AST
  988. From: Stan Armstrong <ARMSTRONG%STMARYS.BITNET@forsythe.stanford.edu>
  989. Subject: BBS for Mac wired to VAX
  990.  
  991. I want to set up a BBS on my Mac at the office to enable me to transfer
  992. files between home and work. The office machine is a 2-Meg MacPlus with
  993. two external hard drives (20 & 30). The machine is hardwired to a
  994. DevelSwith SLIM which serves our VAXes. I have RR Host, the miniHOST
  995. procedures for the RR, and ChesleyUs HyperHost. None of these will work
  996. unmodified because they all expect to talk to a Hayes compatible modem.
  997.  
  998. Has anyone either modified one of the above or found something else which
  999. may be suitable for my application?
  1000.  
  1001. Thanks.
  1002.  
  1003. Stan Armstrong
  1004.  
  1005. ------------------------------
  1006.  
  1007. Date: Fri, 4 Mar 88 14:39 EST
  1008. From: <PORTERG%VCUVAX.BITNET@forsythe.stanford.edu>
  1009. Subject: Request for wargamers
  1010.  
  1011. ATTENTION:
  1012.         I am trying to get some demographic data on Mac users, and I need
  1013. some help from the net.  I am trying to find the intersection of the sets:
  1014. _______________________________     __________________________________
  1015.                                 \ /
  1016.                                 / \
  1017.                               /     \
  1018.                             /         \
  1019.                             |         |
  1020.         Plays wargames      |  Both   |       Owns a Mac
  1021.                             |         |
  1022.                             \         /
  1023.                               \     /
  1024.                                 \ /
  1025.                                 / \
  1026. -------------------------------     ---------------------------------
  1027.         I realize that this also includes the set "Has access to the net",
  1028. but if the moderator could provide some figures as to the distribution of
  1029. this list, I could make some sense of the results.
  1030. [ We have no clue how many people read this thing.  Lots of redistribution.]
  1031.         If you are a Mac-owning wargamer or know one, please respond.  I
  1032. need to know what types of wargames you play (role-play, strategy, etc.),
  1033. any particular ones you prefer, and any other demographic info you care
  1034. to send (age, area of country, sex, etc.)  Cthulhu willing, the results
  1035. will be posted when the replies stop.  Reply directly to:
  1036.  
  1037.         Greg Porter, aka PORTERG@VCUVAX on Bitnet.
  1038.  
  1039.         Thanks.
  1040.  
  1041. ------------------------------
  1042.  
  1043. Date: Fri, 04 Mar 88 14:51:46 PST
  1044. From: HMICHEL%CALSTATE.BITNET@forsythe.stanford.edu
  1045. Subject: Bank Checks in LaserWriter II Envelope Feeder
  1046.  
  1047.  
  1048.      Does anybody have any experience with running bank checks through the
  1049. LaserWriter II's envelope tray?  The campus is going to order one and I'm
  1050. trying to plan ahead.
  1051.  
  1052.      How about sheetfeed bank checks that can be put into the LaserWriter's
  1053. regular paper tray?
  1054.  
  1055. Thanks for any info.
  1056.  
  1057. Michael W. Fleming, Instructional Computing Consultant, Computer Services
  1058. California State College, 9001 Stockdale Hwy, Bakersfield, Ca. 93311-1099
  1059. Business Telephone: (805) 833-2309  -or-  (805) 833-2115  {message}
  1060. Home: 2408 Barnett St., Bakersfield, Ca. 93308, Phone: (805) 399-6542
  1061. Bitnet:  HMICHEL@CALSTATE
  1062. Arpanet: HMICHEL%CALSTATE.BITNET@CUNYVM.CUNY.EDU
  1063.  
  1064. ------------------------------
  1065.  
  1066. Date: Fri, 4 Mar 1988 15:01 CST
  1067. Date: Fri,  4 Mar 88 14:59 CST
  1068. From: <OPTON@UHVAX1>
  1069. Subject: appletalk PC driver v2 (long)
  1070.  
  1071. This is in response to a posting in the USENET mac digest.
  1072. by Mr. Lenoil of Apple.  I apologize for posting to the
  1073. digest, but my attempts to mail to him directly were bounced.
  1074.  
  1075. February 26, 1988
  1076.  
  1077. Dear Mr. Lenoil,
  1078.  
  1079. Enclosed please find your reply to Joachim Lindenberg concerning
  1080. version 2 of the atalk.exe driver for the LocalTalk PC card.  We
  1081. purchased the LocalTalk PC card the day before I recieved this, so it
  1082. had version 1 of the atalk.exe driver enclosed.  (We get our Apple
  1083. equipment through our campus microcomputer center).  After
  1084. reading your reply, I called up our microcomputing center to inform
  1085. them of the revision.  They have been trying to get the revision from
  1086. Apple, but for some reason, there have been some delays.  One
  1087. reason appears to be that no one in this region knew about it!  The
  1088. people in our microcomputing department say it appears that
  1089. version 2 is a well kept secret, and are having trouble obtaining it.
  1090. Can you explain what is going on, and perhaps tell me what to do to
  1091. expedite upgrading our atalk.exe drivers?  It sure would make a lot of
  1092. our clients' lives a lot easier.
  1093.  
  1094. Thank you,
  1095.  
  1096. Lee Thomison
  1097. Electronics Supervisor
  1098. University of Houston
  1099. 4901 Calhoun
  1100. Houston, Texas  77004
  1101. (713) 749-3127
  1102.  Bitnet: OPTON@UHVAX1
  1103.  
  1104. ***********************************************************************
  1105.  
  1106. From: lenoil@apple.UUCP (Robert Lenoil)
  1107. Subject: Re: AppleTalk PC card
  1108. Date: 16 Jan 88 04:03:38 GMT
  1109. Organization: Apple Computer Inc., Cupertino, USA
  1110.  
  1111. In article <30@iravcl.ira.uka.de> joachim@iravcl.ira.uka.de writes:
  1112. >I purchased an AppleTalk PC Card on monday. Its obvious that you should
  1113. >not have a mouse and a modem (I am using an AT - PC users might use IRQ 2)
  1114. >otherwise you'll have to trash one...
  1115. >
  1116. >I would like to use IRQ 5 for the AppleTalk PC card (not used in my system,
  1117. >I've only one printer attached). - should be an easy hardware modification.
  1118. >However, the atalk.exe program does not allow /cardint=5. Has anyone
  1119. >done that before?  Is someone at Apple listening?
  1120. >
  1121. >Joachim Lindenberg, University of Karlsruhe
  1122. >Federal Republic of Germany, West Germany.
  1123.  
  1124. Slow down Joachim, no hardware modifications are necessary.  Yesterday,
  1125. Apple announced the immediate availability of AppleShare PC, which
  1126. allows PCs to transparently access AppleShare file servers and AppleTalk
  1127. LaserWriters and ImageWriters.  AppleShare PC includes a new version of
  1128. the ATALK.EXE AppleTalk driver, which no longer uses the card's hardware
  1129. interrupt feature.  The /cardint setting is completely ignored, and does
  1130. not conflict with your COM ports.  The new driver will also be included
  1131. with the AppleTalk PC Card, which has now been renamed to the LocalTalk
  1132. PC Card, in line with Apple's renaming of AppleTalk Personal Network
  1133. Cabling to LocalTalk Personal Network Cabling. (This was done to avoid
  1134. confusion between AppleTalk the network system, and LocalTalk the
  1135. cabling system, since AppleTalk protocols now run on various cable
  1136. systems, including Ethernet cabling.)  Additionally, the price of the
  1137. card has been dropped from $399 to $249 (AppleShare PC costs $149).  In
  1138. other words, you should have waited a few days to buy your card.  But
  1139. the good news is that the new ATALK.EXE (version 2.0) will solve your
  1140. problems.
  1141. --
  1142. Robert Lenoil
  1143. Apple Computer Inc.
  1144. Network Systems Development
  1145.  
  1146. ------------------------------
  1147.  
  1148. From: hwangbo@topaz.rutgers.edu (Sungdae Hwangbo)
  1149. Subject: mac software for foreign languages
  1150. Date: 5 Mar 88 00:21:58 GMT
  1151.  
  1152.  
  1153. Greetings,
  1154.  
  1155.     Would someone out there shed a light on the status of mac software
  1156. for the foreign languages.  Specifically, Korean, Hebrew, and Greek language
  1157. softwares are needed.  They can be separate programs or all in one.  We went
  1158. as far as using Greek symbols in Microsoft word program by loading 'symbol'
  1159. fonts.  Any suggestion will be greatly appreciated.  A detailed info will
  1160. be much much more appreciated, of course.
  1161.  
  1162. Thanks,
  1163. Hwangbo
  1164.  
  1165. p.s. In case, if possible, do try to answer to me directly.
  1166.      hwangbo@topaz.rutgers.edu or hwangbo@zodiac.bitnet.
  1167.  
  1168. ------------------------------
  1169.  
  1170. Date: Fri 4 Mar 88 19:16:31-PST
  1171. From: A. E. Siegman <SIEGMAN@Sierra.Stanford.EDU>
  1172. Subject: Screen Slaving and Timbuktu
  1173.  
  1174. A few weeks ago I asked about "screen slaver" programs, to permit one or
  1175. more "slave" Macs to act as remote passive screen displays for a "master"
  1176. Mac over an AppleTalk connection.  Following suggestions from several people
  1177. I've tried "Timbuktu" from WOS Data Systems.
  1178.  
  1179. Timbuktu permits any number of Macs on an AppleTalk net to set themselves
  1180. up either as hosts, who invite participation by other Macs, or as guests,
  1181. who can attach to a host Mac who has issued an invitation.
  1182.  
  1183. A guest can attach to a host in either of two modes.  In "observe" mode,
  1184. the screen on the guest Mac tracks everything that happens on the host
  1185. Mac, but that's all.  In "participate" mode the mouse and keyboard on both
  1186. the host and the guest Macs can equally and simultaneously affect whatever
  1187. application is running on the host Mac.  In effect the guest Mac can run
  1188. the host Mac completely, and see everything that happens on it, while the
  1189. host operator has full control also.
  1190.  
  1191. Timbuktu could be very useful for a number of applications mentioned in its
  1192. documentation.  Two people at remote locations can collaborate in running
  1193. a single program, each seeing exactly the same thing on the screen, while
  1194. conversing by phone.  Consulting, problem solving, user training, and
  1195. collaborative work are all possible.  The program seems to work very well.
  1196.  
  1197. However, it's not really satisfactory for the pure remote display function
  1198. I was seeking.  First, only one guest can connect to a host at one time.
  1199. Multiple slave displays are possible only through a complicated serial
  1200. chaining procedure (guest watches host-a watches host-b...).  Second, at
  1201. least on a Mac Plus, running Timbuktu very much slows down the screen
  1202. display.  Repainting of the screen can take considerable time, and items
  1203. on the screen (menus, windows, icons) seem to be repainted in a strange and
  1204. random order.
  1205.  
  1206. Summary: A nice program, but not for the purely passive, fast local display
  1207. purposes I wanted.
  1208.  
  1209. ------------------------------
  1210.  
  1211. Date: Fri 4 Mar 88 19:34:43-PST
  1212. From: A. E. Siegman <SIEGMAN@Sierra.Stanford.EDU>
  1213. Subject: Mac II Footprint (and Noise) Cure?
  1214.  
  1215. Many of us have obviously grown to love the small footprint on our desks of
  1216. the original Mac, Mac Plus, or SE, not to mention the silence of at least
  1217. the first two.  For me, it was a very hard choice to decide between a Mac
  1218. II or an accelerated internal-disk quieted-fan SE at about the same total
  1219. cost -- aesthetics and ergonomics versus future expandibility.
  1220.  
  1221. Isn't the optimum solution to this a monitor for the desktop *with the
  1222. keyboard connection and a floppy disk drive built into it* -- it would
  1223. hardly enlarge the monitor at all -- and then the whole Mac II enclosure,
  1224. power supply, hard disk, fan noise and disk whine and all, could sit out
  1225. of sight, and mostly out of earshot, under the desk or tabletop.
  1226.  
  1227. I hope Apple senses how much it's lost in "desktop friendliness" in going
  1228. from the original Mac enclosure to the just plain clunky IBM-like Mac II.
  1229.  
  1230. ------------------------------
  1231.  
  1232. Date: Sat,  5 Mar 88  17:35:16 EST
  1233. From: Rahaim%UMass.BITNET@Forsythe.Stanford.EDU
  1234. Subject: Apache Strike
  1235.  
  1236.   If you havent tried Apache Strike from silicon beach you are missing
  1237. something. It's the MOST addicting that's come out in a very long time
  1238. (since Dark castle).
  1239.  
  1240.    On another note.. Does any one have any Pacal routines to read from
  1241. the Impulse Sound digitizer? I Called Impulse and they said NOTHING was
  1242. available... How ever I want to read from my digitizer using something
  1243. other than their software..
  1244.                       Jason Rahaim
  1245.  
  1246. =+=+=+=+=+=+=+=+=+=
  1247.    PS. My Boss doest even know I read/send net mail on his time so there
  1248. aint no way this express the opinion of my Employer (University of mass.)
  1249. and I dont even think they have any Official opinions on any thing.
  1250.  
  1251. ------------------------------
  1252.  
  1253. End of INFO-MAC Digest
  1254. **********************
  1255. 14-Mar-88 22:42:27-PST,21416;000000000000
  1256. Mail-From: INFO-MAC-REQUEST created at 14-Mar-88 22:18:32
  1257. Date: 14 Mar 88 2218-PST
  1258. From: Moderators Jon Pugh, Dwayne Virnau, Lance Nakata
  1259. Reply-to: INFO-MAC@SUMEX-AIM.Stanford.EDU
  1260. Subject: INFO-MAC Digest   V6 #27
  1261. To: INFO-MAC@SUMEX-AIM.Stanford.EDU
  1262.  
  1263.  
  1264. INFO-MAC Digest          Tuesday, 15 Mar 1988      Volume 6 : Issue 27
  1265.  
  1266. Today's Topics:
  1267.                        RedEdit 1.2d1 (in 4 parts)
  1268.                          CheapBeep (in 2 parts)
  1269.                                Giffer 1.0
  1270.                               CSLI Reports
  1271.                                FarceFilms
  1272.                             More Venice Sizes
  1273.                    A&F Review -- Feb '88 (in 2 parts)
  1274.                          Dungeon of Doom Update
  1275.                       QuickerGraf 1.0 (in 3 parts)
  1276.                            1040EZ (in 4 parts)
  1277.                                  4D Say
  1278.                                Font Stack
  1279.                             Color Icon Editor
  1280.                               Paint DA 2.0
  1281.                          TN123 plus many others
  1282.                               FarceFilm 52
  1283.            HyperCard report on HyperTEXT workshop (in 4 parts)
  1284.                 Collected bug reports (& patches) for CAP
  1285.                        Round window for Earth Idle
  1286.                             Password Utility
  1287.                               Proper Icons
  1288.                            [TEAC tape editor]
  1289.  
  1290.  
  1291. ----------------------------------------------------------------------
  1292.  
  1293. Date: Sun,  7 Feb 88 15:17:53 -0500 (EST)
  1294. From: rs4u+@andrew.cmu.edu (Richard Siegel)
  1295. Subject: RedEdit 1.2d1 (in 4 parts)
  1296.  
  1297.  
  1298. This is a BinHex'ed StuffIt archive, that contains version 1.2d1 of
  1299. ResEdit; this one seems to fix many Mac II compatibility bugs.
  1300.  
  1301.         --Rich
  1302.  
  1303. ===================================================================
  1304. Richard Siegel
  1305. THINK Technologies, QA Technician (on leave)
  1306.  
  1307. The opinions stated here do not represent the policies
  1308. of THINK Technologies or of Carnegie-Mellon University.
  1309.  
  1310. Arpa: rs4u@andrew.cmu.edu
  1311. UUCP: {decvax,ucbvax,sun}!andrew.cmu.edu!rs4u
  1312. ==================================================================
  1313.  
  1314. [archived as
  1315.  
  1316. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>UTILITY-RESEDIT-12D1-PART1.HQX
  1317. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>UTILITY-RESEDIT-12D1-PART2.HQX
  1318. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>UTILITY-RESEDIT-12D1-PART3.HQX
  1319. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>UTILITY-RESEDIT-12D1-PART4.HQX
  1320.  
  1321. This version replaces versions 1.0d4 and 1.0d5.
  1322.  
  1323. - Lance ]
  1324.  
  1325. ------------------------------
  1326.  
  1327. Date: Tue 9 Feb 88 22:08:14-PDT
  1328. From: Jason Daida <JASON@SPOCC.STANFORD.EDU>
  1329. Subject: CheapBeep (in 2 parts)
  1330.  
  1331.         "Here is an amusing way to add variety and personality to your
  1332. Macintosh.  Now you can easily choose several sounds to be randomly
  1333. selected from as a replacement for the old SysBeep.
  1334.         "CheapBeep is a Control Panel device file for System 4.1 and later.
  1335. These systems have a Control Panel desk accessory which can open files of
  1336. type 'cdev' and allow them to display information and accept commands
  1337. through the Control Panel window." - from CheapBeep's documentation.
  1338.  
  1339. [Moderator--These files contain CheapBeep and documentation plus sample
  1340. sounds.]  These files were stuffed and binhexed.  Enjoy!
  1341.  
  1342. Jason Daida
  1343. j.jmd@macbeth.stanford.edu
  1344. jason@spocc.stanford.edu
  1345.  
  1346. [archived as
  1347.  
  1348. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>CDEV-CHEAPBEEP-PART1.HQX
  1349. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>CDEV-CHEAPBEEP-PART2.HQX
  1350.  
  1351. - Lance ]
  1352.  
  1353. ------------------------------
  1354.  
  1355. Date: Thu 11 Feb 88 11:35:55-GMT
  1356. From: Jeff Shulman <SHULMAN@SDR>
  1357. Subject: Giffer 1.0
  1358.  
  1359. [ Uploaded from Delphi by Jeff Shulman (JEFFS) ]
  1360.  
  1361. Name: GIFFER 1.0
  1362. Date: 10-FEB-1988 21:16 by BEAUZEAU
  1363.  
  1364. [ Updated 10-FEB-1988 21:16 by BEAUZEAU. Giffer 1.0, a significant
  1365. improvement over 0.96.  This version is BeerWare. Please read the
  1366. documentation for details.  It's included in the StuffIt file. ]
  1367.  
  1368.   Here is Giffer for the Macintosh II only.  It will display GIF and Thunder-
  1369. Scan images, in full color or grays.  Here also are a few 256-color GIF files.
  1370. I have much more, so if there's interest, I'll post them.  Also, GIF files may
  1371. be found on CompuServe in the PICS forum.  These images look great...just like
  1372. photographs.
  1373.   GIF is Graphics Interchange Format, a graphics storage and compression
  1374. standard developed by CompuServe Information Service.  GIF files are
  1375. transferable across computer types, and there are programs available for many
  1376. different Micros to display them.
  1377.   Steve Blackstock, Mac II, Giffer.  Tell me if you like it!
  1378.  
  1379. [archived as
  1380.  
  1381. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>GIFFER-10.HQX
  1382.  
  1383. This version replaces version 0.96.
  1384.  
  1385. - Lance ]
  1386.  
  1387. ------------------------------
  1388.  
  1389. Date: Tue 9 Feb 88 22:49:29-PST
  1390. From: Ron Nash <NASH@Russell.Stanford.EDU>
  1391. Subject: CSLI Reports
  1392.  
  1393. A list of reports published by The Center for the Study of Language
  1394. and Information at Stanford University is now available in hypercard
  1395. format. Abstracts are included.
  1396.  
  1397. The stack is available by anonymous ftp from csli.stanford.edu.
  1398. The relevant file is: pub/csli-abstracts.hqx.
  1399.  
  1400. Those without internet access can send a 3.5" disk and a self-addressed
  1401. envelope to:
  1402.  
  1403.     Publications
  1404.     CSLI
  1405.     Ventura Hall
  1406.     Stanford University
  1407.     Stanford, CA  94305-4115
  1408.  
  1409.  
  1410. (CSLI was founded in 1983 by researchers from Stanford University,
  1411.  SRI International, and Xerox PARC to further research and development
  1412.  of integrated theories of language, information, and computation.)
  1413.  
  1414.  
  1415. Ron Nash
  1416. Center for the Study of Language and Information
  1417. nash@russell.stanford.edu
  1418.  
  1419. [archived as
  1420.  
  1421. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>HYPERCARD-CSLI-REPORT-PART1.HQX
  1422. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>HYPERCARD-CSLI-REPORT-PART2.HQX
  1423. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>HYPERCARD-CSLI-REPORT-PART3.HQX
  1424. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>HYPERCARD-CSLI-REPORT-PART4.HQX
  1425.  
  1426. - Lance ]
  1427.  
  1428. ------------------------------
  1429.  
  1430. Date: Fri 12 Feb 88 10:47:31-GMT
  1431. From: Jeff Shulman <SHULMAN@SDR>
  1432. Subject: FarceFilms
  1433.  
  1434. The following messages contain, StuffIt'ed, FarceFilms 45 - 51:
  1435.  
  1436. FarceFilm 45: "Things Just Get Curiouser and Curiouser"
  1437. FarceFilm 46: "The Right Tool For The Job"
  1438. FarceFilm 47: "Holographic Education Pt. 1"
  1439. FarceFilm 48: "Holographic Education Part II"
  1440. FarceFilm 49: "Gamma Gamma Pu"
  1441. FarceFilm 50: "Holographic Education Part 3"
  1442. FarceFilm 51: "Virus! Cough?"
  1443.  
  1444.                                                         Jeff
  1445.  
  1446. [archived as
  1447.  
  1448. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>ARTS-FARCES-FILM-45.HQX
  1449. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>ARTS-FARCES-FILM-46.HQX
  1450. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>ARTS-FARCES-FILM-47.HQX
  1451. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>ARTS-FARCES-FILM-48.HQX
  1452. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>ARTS-FARCES-FILM-49.HQX
  1453. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>ARTS-FARCES-FILM-50.HQX
  1454. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>ARTS-FARCES-FILM-51.HQX
  1455.  
  1456. - Lance ]
  1457.  
  1458. ------------------------------
  1459.  
  1460. Date: Tue, 16 Feb 88 13:25:41 PST
  1461. From: digiorgi@VLSI.JPL.NASA.GOV
  1462. Subject: More Venice Sizes
  1463.  
  1464. Some add'l sizes of Venice fonts, StuffIt format, for general consumption.
  1465.  
  1466. Godfrey DiGiorgi
  1467. digiorgi@jpl-vlsi.arpa
  1468. February 11, 1988
  1469.  
  1470. [archived as
  1471.  
  1472. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>FONT-VENICE.HQX
  1473.  
  1474. - Lance ]
  1475.  
  1476. ------------------------------
  1477.  
  1478. Date: Tue 16 Feb 88 10:17:14-GMT
  1479. From: Jeff Shulman <SHULMAN@SDR>
  1480. Subject: A&F Review -- Feb '88 (in 2 parts)
  1481.  
  1482. [ Uploaded from Delphi by Jeff Shulman ]
  1483.  
  1484. Name: ARTS & FARCES REVIEW -- FEB '88
  1485. Date: 15-FEB-1988 00:22 by ARTSFARCES
  1486.  
  1487. This is the Arts & Farces Review for February 1988.  It's in MicroFilm
  1488. format and as such requires MicroFilm Reader V1.0 or later for use.
  1489.  
  1490. [archived as
  1491.  
  1492. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>ARTS-FARCES-FEB88-PART1.HQX
  1493. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>ARTS-FARCES-FEB88-PART2.HQX
  1494.  
  1495. - Lance ]
  1496.  
  1497. ------------------------------
  1498.  
  1499. Date: Tue 16 Feb 88 10:19:22-GMT
  1500. From: Jeff Shulman <SHULMAN@SDR>
  1501. Subject: Dungeon of Doom Update
  1502.  
  1503. [ Uploaded from Delphi by Jeff Shulman ]
  1504.  
  1505. Name: DOOM UPDATE
  1506. Date: 16-FEB-1988 00:51 by JONES
  1507.  
  1508. Doom Update updates The Dungeon of Doom version 3.0 to 5.3 and 4.0 to 5.4.
  1509. It installs important new information on the status of the dungeon into the
  1510. programs.
  1511.  
  1512. [archived as
  1513.  
  1514. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>GAME-DUNGEON-OF-DOOM-UPDATE.HQX
  1515.  
  1516. - Lance ]
  1517.  
  1518. ------------------------------
  1519.  
  1520. Date: Mon 22 Feb 88 09:56:15-GMT
  1521. From: Jeff Shulman <SHULMAN@SDR>
  1522. Subject: QuickerGraf 1.0 (in 3 parts)
  1523.  
  1524. [ Uploaded from Delphi by Jeff Shulman ]
  1525.  
  1526. Name: QUICKERGRAF 1.0
  1527. Date: 22-FEB-1988 07:18 by JEFFS
  1528.  
  1529. This is version 1.0 of QuickerGraf (formerly known as QuickerDraw) from
  1530. Andy Hertzfeld.  QuickerGraf is a high performance extension to Color
  1531. QuickDraw that speeds up many common operations by a factor of 3 or so.  It
  1532. comes in the form of a cdev that you drag into your system folder. It is
  1533. really only useful in the 8-bit mode on the Mac II.  Andy granted
  1534. permission to distribute it anywhere you like non-commercially; He is still
  1535. retaining all commercial rights.
  1536.  
  1537. Also included is a benchmark/demo program for QuickerGraf that demonstrates
  1538. some of the speed-ups.
  1539.  
  1540. [archived as
  1541.  
  1542. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>INIT-QUICKERGRAF-10-PART1.HQX
  1543. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>INIT-QUICKERGRAF-10-PART2.HQX
  1544. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>INIT-QUICKERGRAF-10-PART3.HQX
  1545.  
  1546. - Lance ]
  1547.  
  1548. ------------------------------
  1549.  
  1550. Date: Tue, 1 Mar 88 15:42:29 CST
  1551. From: liberte@ncsa.uiuc.edu (Dan LaLiberte)
  1552. Subject: 1040EZ (in 4 parts)
  1553.  
  1554. URGENT - get this out as soon as possible.  Dated material.
  1555.  
  1556. This Tax Stack contains everything you need to file the 1040EZ form
  1557. (tax form, tax table, worksheets, and complete IRS instructions).
  1558. The LaserWriter and ImageWriter printouts have been approved by the IRS.
  1559. If you find that this StackWorks stack works for you, please send the
  1560. shareware fee of $10.
  1561.  
  1562. [archived as
  1563.  
  1564. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>HYPERCARD-TAXFORM-1040EZ-PART1.HQX
  1565. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>HYPERCARD-TAXFORM-1040EZ-PART2.HQX
  1566. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>HYPERCARD-TAXFORM-1040EZ-PART3.HQX
  1567. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>HYPERCARD-TAXFORM-1040EZ-PART4.HQX
  1568.  
  1569. - Lance ]
  1570.  
  1571. ------------------------------
  1572.  
  1573. Date: Fri 4 Mar 88 08:46:05-GMT
  1574. From: Jeff Shulman <SHULMAN@SDR>
  1575. Subject: 4D Say
  1576.  
  1577. [ Uploaded from Delphi by Jeff Shulman ]
  1578.  
  1579. Name: 4D SAY
  1580. Date: 3-MAR-1988 13:48 by NATURAL
  1581.  
  1582. 4D Say 1.0.  4D Say is a hot little 4th Dimension External that allows the
  1583. use of the MacInTalk speech driver from within 4th Dimension.  Less than 4k
  1584. and solid as a rock.  Great for spoken error messages, alerts, welcomes,
  1585. greetings, etc.  A lot of fun, and free. A public-domain 4D External from
  1586. Djundi Karjadi and friends at Natural Intelligence Consulting.
  1587.  
  1588. [archived as
  1589.  
  1590. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>4D-SAY-10.HQX
  1591.  
  1592. - Lance ]
  1593.  
  1594. ------------------------------
  1595.  
  1596. Date: Tue 16 Feb 88 10:20:15-GMT
  1597. From: Jeff Shulman <SHULMAN@SDR>
  1598. Subject: Font Stack
  1599.  
  1600. [ Uploaded from Delphi by Jeff Shulman ]
  1601.  
  1602. Name: FONT PREVIEW STACK
  1603. Date: 14-FEB-1988 08:49 by JIMWEINRICH
  1604.  
  1605. This 10K stack is a template for printing out the complete character set
  1606. for any font (ASCII 1 to ASCII 255, excluding delete) in a neat rectangular
  1607. array.  It is especially useful for printing out downloadable laser fonts,
  1608. because it will print characters that are not accessible from the keyboard.
  1609. For reasons I don't understand, it occasionally prints a few characters
  1610. bitmapped, and on some derived fonts (like Helvetica Fractions) it fails to
  1611. print at all.  But it does work on the vast majority of fonts.  Enjoy!
  1612. It's free.  --Jim Weinrich
  1613.  
  1614. [archived as
  1615.  
  1616. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>HYPERCARD-FONT-PREVIEW.HQX
  1617.  
  1618. - Lance ]
  1619.  
  1620. ------------------------------
  1621.  
  1622. Date: Tue, 16 Feb 88 23:48:54 EST
  1623. From: eacj@tcgould.tn.cornell.edu (Julian Vrieslander)
  1624. Subject: Color Icon Editor
  1625.  
  1626. Icon Edit
  1627.  
  1628. This is an application for editing color icon resources (cicn's).
  1629. It runs only on a color-capable Mac.  After converting with BinHex,
  1630. you will need to unstuff with Stuffit.  Documentation file supplied.
  1631.  
  1632. This little gem comes from Ben Haller of AppleSauce Designs.  It is
  1633. shareware.
  1634.  
  1635. Posted by Julian Vrieslander
  1636. ARPA -  eacj@tcgould.tn.cornell.edu       BITNET - eacj@CRNLTHRY
  1637.  
  1638. [archived as
  1639.  
  1640. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>COLOR-ICON-EDITOR.HQX
  1641.  
  1642. - Lance ]
  1643.  
  1644. ------------------------------
  1645.  
  1646. Date: Tue 16 Feb 88 13:20:33-GMT
  1647. From: Jeff Shulman <SHULMAN@SDR>
  1648. Subject: Paint DA 2.0
  1649.  
  1650. [ Uploaded from Delphi by Jeff Shulman ]
  1651.  
  1652. Name: PAINT VIEWER DA
  1653. Date: 14-FEB-1988 01:05 by PAGE1
  1654.  
  1655. [ Updated 14-FEB-1988 01:05 by PAGE1. This is version 2.0 of the Paint DA.
  1656. A small bug in the selection rectangle has been fixed.  Also this version
  1657. will only display the copyright and shareware notice once when you run the
  1658. DA. ]
  1659.  
  1660. This is a picture viewer DA that views a MacPaint/FullPaint document on the
  1661. full screen.  It is compatable with 512s, Pluses, and SEs. Also works under
  1662. DA FKEY and suitcase.  Features include:  Zoom in/out, scroll copy to
  1663. clipboard, and startupscreen production.  Shareware.
  1664.  
  1665. [archived as
  1666.  
  1667. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>DA-PAINT-VIEWER-20.HQX
  1668.  
  1669. This version replaces the previous version.
  1670.  
  1671. - Lance ]
  1672.  
  1673. ------------------------------
  1674.  
  1675. Date: Thu 18 Feb 88 15:43:54-PST
  1676. From: Bill Lipa <P.PRIAPUS@OTHELLO.STANFORD.EDU>
  1677. Subject: TN123 plus many others
  1678.  
  1679. The following are tech notes from July 1987.
  1680.  
  1681. Bill
  1682.  
  1683. [archived as
  1684.  
  1685. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>TN096.HQX
  1686. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>TN120.HQX
  1687. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>TN123.HQX
  1688. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>TN126.HQX
  1689. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>TN131.HQX
  1690. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>TN132.HQX
  1691. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>TN133.HQX
  1692. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>TN134.HQX
  1693. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>TN135.HQX
  1694. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>TN136.HQX
  1695. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>TN137.HQX
  1696. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>TN138.HQX
  1697. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>TN139.HQX
  1698. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>TN140.HQX
  1699. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>TN141.HQX
  1700. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>TN142.HQX
  1701. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>TN143.HQX
  1702. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>TN144.HQX
  1703. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>TN145.HQX
  1704. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>TN146.HQX
  1705. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>TN147.HQX
  1706. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>TN148.HQX
  1707. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>TN149.HQX
  1708. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>TN150.HQX
  1709. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>TN151.HQX
  1710. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>TN152.HQX
  1711. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>TN153.HQX
  1712. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>TN154.HQX
  1713.  
  1714. Technotes 96, 120, 123, and 126 supersede previous versions.
  1715.  
  1716. - Lance ]
  1717.  
  1718. ------------------------------
  1719.  
  1720. Date: Fri 19 Feb 88 10:49:02-GMT
  1721. From: Jeff Shulman <SHULMAN@SDR>
  1722. Subject: FarceFilm 52
  1723.  
  1724. [ Uploaded from Delphi by Jeff Shulman ]
  1725.  
  1726. Name: FARCEFILM 52.FILM
  1727. Date: 18-FEB-1988 21:21 by ARTSFARCES
  1728.  
  1729. It's in MicroFilm format and as such requires MicroFilm Reader V1.0 or
  1730. later for use. This week's topic is "The Bureaucratization of Macintosh."
  1731.  
  1732. [archived as
  1733.  
  1734. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>ARTS-FARCES-FILM-52.HQX
  1735.  
  1736. - Lance ]
  1737.  
  1738. ------------------------------
  1739.  
  1740. Date: Thu, 18 Feb 88 15:37:08-2300
  1741. From: mcvax!iddth!jn@uunet.UU.NET (Jakob Nielsen)
  1742. Subject: HyperCard report on HyperTEXT workshop (in 4 parts)
  1743.  
  1744. Enclosed is a HyperCard stack which is a hypertext trip report from the
  1745. HyperTEXTU87 workshop in Chapel Hill, NC in November 1987. It has been run
  1746. through Stuffit and BinHex 4.  Unfortunately the file is too large to send
  1747. all at once, so it has been split up into four parts which must be
  1748. concatenated together before converting back using BinHex 4.
  1749.  
  1750. [archived as
  1751.  
  1752. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>HYPERCARD-HYPERTEXT-WORKSHOP-PART1.HQX
  1753. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>HYPERCARD-HYPERTEXT-WORKSHOP-PART2.HQX
  1754. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>HYPERCARD-HYPERTEXT-WORKSHOP-PART3.HQX
  1755. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>HYPERCARD-HYPERTEXT-WORKSHOP-PART4.HQX
  1756.  
  1757. - Lance ]
  1758.  
  1759. ------------------------------
  1760.  
  1761. Date: Mon, 15 Feb 88 16:33:14 PST
  1762. From: coherent!dplatt@ames.arc.nasa.gov (Dave Platt)
  1763. Subject: Collected bug reports (& patches) for CAP
  1764.  
  1765. This posting contains bug reports #0001 thru #0015 for the Columbia
  1766. University AppleTalk Package (CAP).  The patches in these reports should be
  1767. applied against the prerelease distribution #4 sources available on SUMEX,
  1768. *after* the PATCH5, PATCH6, and PATCH7 patches and source-file replacements
  1769. have been performed.
  1770.  
  1771. If you're using CAP, and _especially_ if you're using the papif
  1772. line-printer daemon "filter", you should definitely install these patches.
  1773.  
  1774.  
  1775. Dave Platt
  1776.   UUCP:    ...!{ames,sun,uunet}!coherent!dplatt     Domain: dplatt@coherent.com
  1777.       Internet: coherent!dplatt@ames.arpa, ...@sun.com, ...@uunet.uu.net
  1778.  
  1779. [archived as
  1780.  
  1781. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>AT-CAP4-BUGS-AND-PATCHES.SHAR
  1782.  
  1783. - Lance ]
  1784.  
  1785. ------------------------------
  1786.  
  1787. Date: Wed, 17 Feb 88 10:40:23 est
  1788. From: Oliver Steele <steele@cs.unc.edu>
  1789. Subject: Round window for Earth Idle
  1790.  
  1791. Here are some resources to paste (with ResEdit) into the recently
  1792. posted Earth Idle program to give it a round window.
  1793.  
  1794. Oliver Steele                       ...!uunet!mcnc!unc!steele
  1795.                                steele@cs.unc.edu
  1796.  
  1797. [archived as
  1798.  
  1799. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>EARTH-IDLE-ROUND-WINDOW-RESOURCE.HQX
  1800.  
  1801. - Lance ]
  1802.  
  1803. ------------------------------
  1804.  
  1805. Date: Sun, 21 Feb 88 15:40:21 gmt
  1806. From: Ralph Martin
  1807. From: <ralph%VAX1.COMPUTING-MATHS.CARDIFF.AC.UK@forsythe.stanford.edu>
  1808. Subject: Password Utility
  1809.  
  1810. Here is a small shareware program (and documentation) which stops random
  1811. people from booting up your Mac from its Hard Disk - at startup, a password
  1812. is requested and checked. If its not correct, the Mac just shuts down
  1813. again. This software is multifinder compatible.
  1814.  
  1815. Hope its useful! Ralph.
  1816.  
  1817. [archived as
  1818.  
  1819. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>UTILITY-HARDDISK-PASSWORD.HQX
  1820.  
  1821. - Lance ]
  1822.  
  1823. ------------------------------
  1824.  
  1825. Date: Mon 22 Feb 88 09:55:10-GMT
  1826. From: Jeff Shulman <SHULMAN@SDR>
  1827. Subject: Proper Icons
  1828.  
  1829. [ Uploaded from Delphi by Jeff Shulman ]
  1830.  
  1831. Name: PROPER ICONS
  1832. Date: 20-FEB-1988 11:38 by ACOTE
  1833.  
  1834. These two icons of my own design are, which I feel Proper Icons for the
  1835. Trash can, and one for those of you who own Suitcase(tm). The suitcases
  1836. developed by Apple set a standard, and I believe that this new suitcase
  1837. icon follows this standard for the Suitcase INIT. use ResEdit to install
  1838. into the SuitCase(tm) INIT. The Trashcan ICN# must be install by ResEdit
  1839. into the Finder, remove the trashcan and then renumber the new one to
  1840. ID#130. This may not follow Apples standard, but IS in fact TRASH.  The
  1841. Suitcase Icon will also appear on bootup, I think you'll really like it.
  1842. Hey, Software Supply... Follow the Mac interface, after all these years.
  1843. Other than the Icon (cosmetic) buy Suitcase(tm), you will never waste time
  1844. looking for that DA that removed LF's... Whats it's name.
  1845.  
  1846. [archived as
  1847.  
  1848. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>PROPER-ICONS.HQX
  1849.  
  1850. - Lance ]
  1851.  
  1852. ------------------------------
  1853.  
  1854. Date: 22 Feb 88   12:19 CST
  1855. From: B29165%ANLVM.BITNET@forsythe.stanford.edu
  1856. Subject: [TEAC tape editor]
  1857.  
  1858. This program should be used with extreme caution as you could easily
  1859. destroy the contents of any device on the SCSI bus!
  1860.  
  1861. This program is an editor for the TEAC MT-2ST/20S Streaming Cassette
  1862. Magnetic Tape Unit. It allows you to exercise all of the commands
  1863. implemented on this unit.  It was written as an investigative tool for an
  1864. attempt to write a backup utility (forthcoming) that will use this device.
  1865. This program will probably be of no use to you if you don't have the TEAC
  1866. manuals to refer to. As it is my first effort in the Mac arena it probably
  1867. has many faults, after all it is intended to be only a tool.  Please feel
  1868. free if you would like to send comments but I have no intention of
  1869. supporting this.
  1870.  
  1871. The TEAC MTU that I have came from 1st Class Peripherals in their B-Sider
  1872. unit that I bought for an Apple //e system. When I discovered that the
  1873. interface was SCSI it seemed like fate that I should cable this hummer up
  1874. to my Mac so I can use it to back up my hard disk. Of course there was no
  1875. utility available and yet another project was born...
  1876.  
  1877. There are two added menus. The first is called "Commands" and has all of
  1878. the raw commands plus one that is called "Write RAM" which writes a
  1879. megabyte of memory starting at address 000000. This is all of the RAM on a
  1880. standard Mac+. The other menu is called "Target" and allows you to specify
  1881. the tape unit's SCSI bus address via the "Set Target" item. This is the
  1882. same dialog that comes up when the program is initially run. The other item
  1883. does an SCSI bus reset. The program also does this reset upon exit just to
  1884. be sure it has cleaned up after itself (and you).
  1885.  
  1886. I hope this proves to be useful to someone out there.
  1887.  
  1888. Steven J. Schaeffer
  1889. 310 E. 17th St
  1890. Idaho Falls, ID  83404
  1891.  
  1892. Bitnet: B29165@ANLVM
  1893. GENIE: NYBBLESNBITS
  1894. DELPHI:NYBBLESNBITS
  1895.  
  1896. [archived as
  1897.  
  1898. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>TEAC-MT2ST-TAPE-EDITOR.HQX
  1899.  
  1900. - Lance ]
  1901.  
  1902. ------------------------------
  1903.  
  1904. End of INFO-MAC Digest
  1905. **********************
  1906. 14-Mar-88 23:02:32-PST,14458;000000000000
  1907. Mail-From: INFO-MAC-REQUEST created at 14-Mar-88 22:20:01
  1908. Date: 14 Mar 88 2220-PST
  1909. From: Moderators Jon Pugh, Dwayne Virnau, Lance Nakata
  1910. Reply-to: INFO-MAC@SUMEX-AIM.Stanford.EDU
  1911. Subject: INFO-MAC Digest   V6 #28
  1912. To: INFO-MAC@SUMEX-AIM.Stanford.EDU
  1913.  
  1914.  
  1915. INFO-MAC Digest          Tuesday, 15 Mar 1988      Volume 6 : Issue 28
  1916.  
  1917. Today's Topics:
  1918.                         Usenet Mac Digest V4 #19
  1919.                         Usenet Mac Digest V4 #20
  1920.                         Usenet Mac Digest V4 #21
  1921.                         Usenet Mac Digest V4 #22
  1922.                         Usenet Mac Digest V4 #23
  1923.                         Usenet Mac Digest V4 #24
  1924.                         Usenet Mac Digest V4 #25
  1925.                         Usenet Mac Digest V4 #26
  1926.                         Usenet Mac Digest V4 #27
  1927.                         Usenet Mac Digest V4 #28
  1928.                         Usenet Mac Digest V4 #29
  1929.                         Usenet Mac Digest V4 #30
  1930.                          Delphi Mac Digest V4 #3
  1931.                          Delphi Mac Digest V4 #4
  1932.  
  1933.  
  1934. ----------------------------------------------------------------------
  1935.  
  1936. Date: Mon 8 Feb 88 09:40:43-GMT
  1937. From: Jeff Shulman <SHULMAN@SDR>
  1938. Subject: Usenet Mac Digest V4 #19
  1939.  
  1940. Usenet Mac Digest     Saturday, February 6, 1988     Volume 4 : Issue 19
  1941.  
  1942. Today's Topics:
  1943.      Re: X on Mac ][
  1944.      Re: VLSI design tools
  1945.      What editor(s) do you program with?
  1946.      RE: broadcasting tool on AppleTalk
  1947.      Re: opinions wanted: Fool's Errand
  1948.      Font quality on the LaserWriter SC
  1949.      Re: SE replacement fan survey
  1950.      Re: Re: (LSC) Deep Dark Secrets Wanted! (also LSP)
  1951.      Re: WANTED Hebrew/English word-processor
  1952.      SUMMARY--EXCEL Tax Templates
  1953.      How reliable is GPIB board for Mac II from National Instrument?
  1954.      Re: game review: Crystal Quest
  1955.      Re: Tempo vs. Quickkey
  1956.      Re: The ROM serial driver
  1957.      Re: Bug in 9(36)b4 Kermit
  1958.      Keyboards
  1959.      Re: opinions wanted: Fool's Errand
  1960.      What to do when Macwrite crashes?
  1961.      Re: Keyboards
  1962.      Equations and Word Processing
  1963.      FullWrite competition of Nisus
  1964.  
  1965. [archived as
  1966.  
  1967. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>USENETV4-19.ARC
  1968.  
  1969. - Lance ]
  1970.  
  1971. ------------------------------
  1972.  
  1973. Date: Mon 8 Feb 88 09:41:43-GMT
  1974. From: Jeff Shulman <SHULMAN@SDR>
  1975. Subject: Usenet Mac Digest V4 #20
  1976.  
  1977. Usenet Mac Digest     Saturday, February 6, 1988     Volume 4 : Issue 20
  1978.  
  1979. Today's Topics:
  1980.      GC Hyperdrive - Reliable ???
  1981.      MPW 2.0.1->2.0.2 Upgrade Info
  1982.      Serial Drivers (RAM and ROM)
  1983.      Re: Screen Dumping to a LaserWriter
  1984.      Finder 6.0 in "Scourge of the Killer Icons"
  1985.      Re: Delphi Mac Digest Volume 4, Number 2
  1986.      Re: GC Hyperdrive - Reliable ???
  1987.      Ethertalk and A/UX
  1988.      printing problem - HELP...
  1989.      Real estate pkg info requested
  1990.      Re: 4th Dimension
  1991.      Mac -> stereo
  1992.      Re: Font quality on the LaserWriter SC
  1993.      Re: printing problem - HELP...
  1994.      Expressionist (was Re: Equations (was FullWrite, Word, etc))
  1995.      Re: GC Hyperdrive - Reliable ???
  1996.      Re: macii programmers button
  1997.      Re: Mac -> stereo
  1998.      Re: stack sniffer evils
  1999.      YACC for the Mac / Mac II
  2000.      Anbody done analog data acquisition on a Mac II?
  2001.      Anyone using MacNET?
  2002.      Prototyper by SmetherBarnes
  2003.  
  2004. [archived as
  2005.  
  2006. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>USENETV4-20.ARC
  2007.  
  2008. - Lance ]
  2009.  
  2010. ------------------------------
  2011.  
  2012. From: Jeff Shulman <SHULMAN@SDR>
  2013. Subject: Usenet Mac Digest V4 #21
  2014.  
  2015. Usenet Mac Digest     Saturday, February 6, 1988     Volume 4 : Issue 21
  2016.  
  2017. Today's Topics:
  2018.      Re: Serial Drivers (RAM and ROM)
  2019.      Re: MacII Fast HD Recommendations?
  2020.      Re: DataDesk 101 Keyboard Review & QuickKeys Questions
  2021.      WriteNow Real Soon Now
  2022.      Re: backup utilities
  2023.      Re: QuickerDraw
  2024.      Re: 4th Dimension
  2025.      Re: Something that does fast expansion of text abbreviations?
  2026.      MacLanding 0.6 patch patch (oops)
  2027.      Re: QuickerDraw
  2028.      Problem with Moire CDEV
  2029.      DialogSelect question
  2030.      Wanted: Dutch dictionary for MS WORD
  2031.      Driver installation at boottime
  2032.      Re: INITsdir/new
  2033.      Saleability of MS Word 1.05?
  2034.      Re: LaserWriter IPA font
  2035.      quickeys users unite?
  2036.      low level SCSI utility wanted
  2037.  
  2038. [archived as
  2039.  
  2040. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>USENETV4-21.ARC
  2041.  
  2042. - Lance ]
  2043.  
  2044. 16-Feb-88 22:32:12-PST,989;000000000001
  2045.  
  2046. ------------------------------
  2047.  
  2048. Date: Tue 16 Feb 88 10:12:47-GMT
  2049. From: Jeff Shulman <SHULMAN@SDR>
  2050. Subject: Usenet Mac Digest V4 #22
  2051.  
  2052.  
  2053. ------------------------------
  2054.  
  2055.  
  2056. Today's Topics:
  2057.  
  2058. ------------------------------
  2059.  
  2060.  
  2061.  
  2062. ------------------------------
  2063.  
  2064.  
  2065.  
  2066. ------------------------------
  2067.  
  2068.  
  2069.  
  2070. ------------------------------
  2071.  
  2072.  
  2073.  
  2074. ------------------------------
  2075.  
  2076. Date: Tue 16 Feb 88 10:14:03-GMT
  2077. From: Jeff Shulman <SHULMAN@SDR>
  2078. Subject: Usenet Mac Digest V4 #23
  2079.  
  2080. Usenet Mac Digest     Saturday, February 13, 1988    Volume 4 : Issue 23
  2081.  
  2082. Today's Topics:
  2083.      Re: MacII Monitors Resolutions?
  2084.      Re: EtherTalk vs. LocalTalk on Mac II
  2085.      Re: DialogSelect question
  2086.      Re: Chinese,Japanese & Korean syste
  2087.      Idiotic Rumors
  2088.      Fractals...Jim Cathey where are you?!
  2089.      Font/DA Juggler vs. Suitcase-I own BOTH!
  2090.      Misc bugs in Finder or Moire, Macsbug
  2091.      DaynaFile vs Apple PC 5-1/4"
  2092.      vectors in QD
  2093.      TeXtures upgrade (was: TeXtures and LaserWriter 5.0)
  2094.      Trojan Horse?  Sour grapes?
  2095.      Re: Suitcase versus Font/DA Juggler
  2096.      Video Controllers for PAL Monitors
  2097.      the multifinder and ramdisks?
  2098.      MacRISK has escaped
  2099.      Re: Smalltalk for the Mac SE?
  2100.      Re: Finder 6.0 in "Scourge of the Killer Icons"
  2101.      Apple HD Backup weirdness
  2102.      LW II NT Startup Page
  2103.      Apple System Software Available on Portal
  2104.      Rumor of new Apple video card & monitor
  2105.      LSC and RamSDOpen()
  2106.  
  2107. [archived as
  2108.  
  2109. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>USENETV4-23.ARC
  2110.  
  2111. - Lance ]
  2112.  
  2113. ------------------------------
  2114.  
  2115. Date: Tue 16 Feb 88 10:15:22-GMT
  2116. From: Jeff Shulman <SHULMAN@SDR>
  2117. Subject: Usenet Mac Digest V4 #24
  2118.  
  2119. Usenet Mac Digest     Saturday, February 13, 1988    Volume 4 : Issue 24
  2120.  
  2121. Today's Topics:
  2122.      Cleanup under Finder 5.4
  2123.      Re: Registered Developer?
  2124.      Perfect Multifinding:  The Surprise Ending
  2125.      How Does Word Finder do it?
  2126.      Re: KanjiTalk on an SE or Mac II?
  2127.      Mouse Problems (2 messages)
  2128.      Even parity "fix" on Kermit 9(36)b4
  2129.      Versaterm problem
  2130.      Re: popup menus and other UI stuff
  2131.      Versaterm 3.1 background "send file"
  2132.      Re: Pascal on Mac
  2133.      Re: Mouse Problems
  2134.      WIND resource questions
  2135.      How to tell if a volume in on-line
  2136.      SysEnvirons inconsistency
  2137.      Does Avatar exist?  Why don't they answer their phone?
  2138.      Re: AutoSave DA (2 messages)
  2139.      Re: Pascal on Mac
  2140.      A Solution to the Shareware Dilemma?
  2141.      Re: ResEdit support
  2142.  
  2143. [archived as
  2144.  
  2145. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>USENETV4-24.ARC
  2146.  
  2147. - Lance ]
  2148.  
  2149. ------------------------------
  2150.  
  2151. Date: Mon 22 Feb 88 12:48:56-EDT
  2152. From: Jeff Shulman <SHULMAN@SDR>
  2153. Subject: Usenet Mac Digest V4 #25
  2154.  
  2155. Usenet Mac Digest     Friday, February 19, 1988      Volume 4 : Issue 25
  2156.  
  2157. Today's Topics:
  2158.      Esperanto Stack Password
  2159.      Keeping Undesired Trash off of hard disks
  2160.      Re: AutoSave DA
  2161.      File Server - Information Wanted
  2162.      Information request- A/UX
  2163.      List Manager problem
  2164.      Bug in LaserWriter Driver 5.0
  2165.      SAS/Graph on a Mac
  2166.      Re: A/UX cost + MAC disks
  2167.      Re: A/UX cost (2 messages)
  2168.      A/UX hints
  2169.      DA copy via cmd-C
  2170.      Re: Does Avatar exist?  Why don't they answer their phone?
  2171.      Re: A/UX cost
  2172.      Option key death
  2173.      Detecting Disk Ejections
  2174.      Why Do I need Kinetics Box?(Unix<>Mac)
  2175.  
  2176. [archived as
  2177.  
  2178. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>USENETV4-25.ARC
  2179.  
  2180. - Lance ]
  2181.  
  2182. ------------------------------
  2183.  
  2184. Date: Mon 22 Feb 88 12:51:21-EDT
  2185. From: Jeff Shulman <SHULMAN@SDR>
  2186. Subject: Usenet Mac Digest V4 #26
  2187.  
  2188. Usenet Mac Digest     Friday, February 19, 1988      Volume 4 : Issue 26
  2189.  
  2190. Today's Topics:
  2191.      Re: SysEnvirons inconsistency
  2192.      Re: LSP keyboard EOF
  2193.      A serial port "pipe"
  2194.      Re: Bug in LaserWriter Driver 5.0
  2195.      Re: Versaterm 3.1 background "send file"
  2196.      Re: Why Do I need Kinetics Box?(Unix<>Mac)
  2197.      Tasking on the Mac (was: stack sniffer evils)
  2198.      Re: LSP keyboard EOF
  2199.      Video DRAMs
  2200.      Re: Option key death
  2201.      General Computer/Hyperdrives a summary..
  2202.      Re: Bug in LaserWriter Driver 5.0
  2203.      Re: Changing the Hard Disk Icon?
  2204.      Re: MacRISK Patch
  2205.      Re: A Few Good Rumors...
  2206.      Asynchronous LaserWriter
  2207.      LED Transparency Projectors?
  2208.      Re: A/UX cost
  2209.  
  2210. [archived as
  2211.  
  2212. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>USENETV4-26.ARC
  2213.  
  2214. - Lance ]
  2215.  
  2216. ------------------------------
  2217.  
  2218. Date: Mon 22 Feb 88 12:52:46-EDT
  2219. From: Jeff Shulman <SHULMAN@SDR>
  2220. Subject: Usenet Mac Digest V4 #27
  2221.  
  2222. Usenet Mac Digest     Friday, February 19, 1988      Volume 4 : Issue 27
  2223.  
  2224. Today's Topics:
  2225.      Re: Software for the Mac -- recommendations wanted.
  2226.      Mail on Mac?
  2227.      Chrystalography and the 3rd Dimension
  2228.      Wanted: information on MiniCad 3D
  2229.      "Shelf life" of storage media
  2230.      Re: Mac Music
  2231.      Multifinder startup oddity
  2232.      Using an apple 3.5" drive as a spare part
  2233.      Re: Versaterm 3.1 background "send file"
  2234.      How to have Mac count laser pages automatically?
  2235.      Re: Option key death
  2236.      removing dialog boxes from the Minifinder
  2237.      Re: Software for the Mac -- recommendations wanted.
  2238.      Re: Versaterm 3.1 background "send file"
  2239.      Re: Software for the Mac -- recommendations wanted.
  2240.      Re: An Open Letter to Apple (Re: ImageWriter problem)
  2241.      MacRecorder history (was Re: Is MacRecorder what BMUG sold for $20?)
  2242.      Re: Versaterm 3.1 background "send file"
  2243.      Re: Software for the Mac -- recommendations wanted.
  2244.      Program to make log.
  2245.      Using IBM SCSI tapestreamer with Mac's
  2246.      LightspeedC 3.0 Upgrade Policy
  2247.  
  2248. [archived as
  2249.  
  2250. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>USENETV4-27.ARC
  2251.  
  2252. - Lance ]
  2253.  
  2254. ------------------------------
  2255.  
  2256. Date: Mon 29 Feb 88 09:25:55-EDT
  2257. From: Jeff Shulman <SHULMAN@SDR>
  2258. Subject: Usenet Mac Digest V4 #28
  2259.  
  2260. Usenet Mac Digest     Friday, February 26, 1988      Volume 4 : Issue 28
  2261.  
  2262. Today's Topics:
  2263.      Re: Software for the Mac -- recommendations wanted.
  2264.      New MacWrite Demo from Claris
  2265.      Hard Disk fan
  2266.      VersaTerm vs. VersaTerm PRO
  2267.      Locking Mac files??
  2268.      80 Meg Hard Disks (Jasmine vs CMS)
  2269.      Re: A/UX cost (and tape backup)
  2270.      Re: Software for the Mac -- recommendations wanted.
  2271.      Device Driver Question
  2272.      WISH: AU/X on CD-ROM
  2273.      BASIC - summary
  2274.      Re: Software for the Mac -- recommendations wanted.
  2275.      VersaTerm PRO Ver. 2.20
  2276.      Re: VersaTerm vs. VersaTerm PRO
  2277.      Ever heard of VideoTrax backup system?
  2278.  
  2279. [archived as
  2280.  
  2281. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>USENETV4-28.ARC
  2282.  
  2283. - Lance ]
  2284.  
  2285. ------------------------------
  2286.  
  2287. Date: Mon 29 Feb 88 09:28:41-EDT
  2288. From: Jeff Shulman <SHULMAN@SDR>
  2289. Subject: Usenet Mac Digest V4 #29
  2290.  
  2291. Usenet Mac Digest     Friday, February 26, 1988      Volume 4 : Issue 29
  2292.  
  2293. Today's Topics:
  2294.      3-D transformations on a MACII?
  2295.      Re: Software for the Mac -- recommendations wanted.
  2296.      Loud Mac II Fan-- Replaceable?
  2297.      Summer Workshops/Programs for High School
  2298.      Mac Plus Video Output
  2299.      Re: Ever heard of VideoTrax backup system?
  2300.      New SE fan & screen jitter?
  2301.      Re: LightSpeed C 2.15 putchar???
  2302.      MultiFinder Info Again
  2303.      A Custom WDEF
  2304.      Re: MacInHebrew problem
  2305.  
  2306. [archived as
  2307.  
  2308. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>USENETV4-29.ARC
  2309.  
  2310. - Lance ]
  2311.  
  2312. ------------------------------
  2313.  
  2314. Date: Mon 29 Feb 88 09:32:38-EDT
  2315. From: Jeff Shulman <SHULMAN@SDR>
  2316. Subject: Usenet Mac Digest V4 #30
  2317.  
  2318. Usenet Mac Digest     Friday, February 26, 1988      Volume 4 : Issue 30
  2319.  
  2320. Today's Topics:
  2321.      Nuvotech EasyNet?
  2322.      Sound on the Mac II
  2323.      A/UX disk I/O (real numbers) (2 messages)
  2324.      Beginning Mac Programing
  2325.      DrvrInstall Question
  2326.      GKS on MAC II
  2327.      WriteNow format needed
  2328.      Mac SE with IIGS Keyboard
  2329.      Re: GKS on MAC II
  2330.      WriteNow vs. Easy Access on the Mac II
  2331.      How about Epsilon for the MAC?
  2332.      IIGS keyboards on Mac SE/II
  2333.      Re: Ever heard of VideoTrax backup system?
  2334.      Info on Rodime RX1000
  2335.      Re: Mac SE with IIGS Keyboard
  2336.      Re: grapes?
  2337.      application's home folder. HELP
  2338.      MacNosy for Mac II?
  2339.      FlushVol() when files are open
  2340.  
  2341. [archived as
  2342.  
  2343. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>USENETV4-30.ARC
  2344.  
  2345. - Lance ]
  2346.  
  2347. ------------------------------
  2348.  
  2349. Date: Mon 8 Feb 88 09:46:23-GMT
  2350. From: Jeff Shulman <SHULMAN@SDR>
  2351. Subject: Delphi Mac Digest V4 #3
  2352.  
  2353. Delphi Mac Digest     Saturday, February 6, 1988      Volume 4 : Issue 3
  2354.  
  2355. Today's Topics:
  2356.      Omnis 3
  2357.      RE: Commands/MacWrite
  2358.      FullWrite Professional Bug list
  2359.      Help needed with CalcMask (2 messages)
  2360.      RE: Expressionist vs. MathType
  2361.      BAvoid SoftBackup
  2362.      re: LSC DrawString() question!  Help!
  2363.      re: Mac programming question
  2364.      Re: Tempo vs. Quickkey
  2365.      HabaWord (2 messages)
  2366.      Re: Pre-4.1 popup menus
  2367.      Re: Pyro and Multifinder
  2368.      Tempo or Quickeys? (2 messages)
  2369.      Word Hairline Rules
  2370.      Table Maker (3 messages)
  2371.      4D Blanking.
  2372.      ListMgr Scrollbar Anomalies
  2373.  
  2374. [archived as
  2375.  
  2376. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>DELPHIV4-03.ARC
  2377.  
  2378. - Lance ]
  2379.  
  2380. ------------------------------
  2381.  
  2382. Date: Mon 22 Feb 88 12:54:25-EDT
  2383. From: Jeff Shulman <SHULMAN@SDR>
  2384. Subject: Delphi Mac Digest V4 #4
  2385.  
  2386. Delphi Mac Digest     Sunday, February 21, 1988       Volume 4 : Issue 4
  2387.  
  2388. Today's Topics:
  2389.      re: Re: INITs
  2390.      Sound on 68020
  2391.      RE: INFO-MAC Digest V6 #12
  2392.      re: Miscellaneous Stuff
  2393.      68030/6882 on mac II (4 messages)
  2394.      MACINTAX ON XL (2 messages)
  2395.      Re: Perfect Multifinding:  The Surprise
  2396.      Where to get kiosks for Macintosh
  2397.      re: LW II NT Startup Page
  2398.      RE: Tape backup
  2399.      re: Alphabetizing Icons? (2 messages)
  2400.      Put Finder comments in resource fork (6 messages)
  2401.      Sampling Rates
  2402.      Placement of Disk Drives (3 messages)
  2403.      MacPaint 5.0
  2404.      color lut resoln ? (3 messages)
  2405.      re: DA copy via cmd-C
  2406.      re: Detecting Disk Ejections
  2407.      re: Multifinder startup oddity (2 messages)
  2408.      Full screen access
  2409.  
  2410. [archived as
  2411.  
  2412. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>DELPHIV4-04.ARC
  2413.  
  2414. - Lance ]
  2415.  
  2416. ------------------------------
  2417.  
  2418. End of INFO-MAC Digest
  2419. **********************
  2420. 14-Mar-88 23:15:42-PST,18551;000000000000
  2421. Mail-From: INFO-MAC-REQUEST created at 14-Mar-88 22:26:29
  2422. Date: 14 Mar 88 2226-PST
  2423. From: Moderators Jon Pugh, Dwayne Virnau, Lance Nakata
  2424. Reply-to: INFO-MAC@SUMEX-AIM.Stanford.EDU
  2425. Subject: INFO-MAC Digest   V6 #29
  2426. To: INFO-MAC@SUMEX-AIM.Stanford.EDU
  2427.  
  2428.  
  2429. INFO-MAC Digest          Tuesday, 15 Mar 1988      Volume 6 : Issue 29
  2430.  
  2431. Today's Topics:
  2432.                               Dotted lines
  2433.                                    GIF
  2434.                                    GIF
  2435.                 RE: Lightspeed C Gripes (forward & post)
  2436.                       LS Pascal Grey Scale Problem
  2437.                       Resource numbering for XCMDs.
  2438.                    Submission for comp-sys-mac-digest
  2439.                        MACWRITE file format wanted
  2440.                          Submission to INFO-MAC
  2441.                            Color QD -> ReGIS?
  2442.                            IBM PC display font
  2443.                        Satellite coverage program
  2444.                                 NEC LC890
  2445.                        Non-Apple Printers for Mac
  2446.                      Another Mac virus on the loose?
  2447.  
  2448.  
  2449. ----------------------------------------------------------------------
  2450.  
  2451. Date: Fri, 26 Feb 88 00:57:26 EST
  2452. From: MacTechnics_User_Group@um.cc.umich.edu
  2453. Subject: Dotted lines
  2454.  
  2455. The easiest way to create a dotted line is just to set the pen pattern
  2456. to something other than black and then draw the line:
  2457.     PenPat(ltGray);
  2458.     MoveTo(50,50);
  2459.     LineTo(100,100);    /* etc */
  2460.  
  2461.  -Eric Shapiro
  2462.   MacTechnics
  2463.  
  2464. ------------------------------
  2465.  
  2466. From: franz!frisky!jkf@ucbarpa.Berkeley.EDU (John Foderaro)
  2467. Subject: GIF
  2468. Date: Mon, 29 Feb 88 23:24:00 PST
  2469.  
  2470.  re: your digest entry of Sun, 21 Feb 88 21:16:01 PST
  2471.  
  2472.  Can you point me to a description of the format of GIF files?  I'd
  2473. like to figure out how to display them on sun workstation.
  2474.  Thanks.
  2475.                 john foderaro
  2476.                 jkf@berkeley.edu
  2477.  
  2478. ------------------------------
  2479.  
  2480. Date: Thu, 25 Feb 88 14:10:13 CST
  2481. From: Benjamin 'Drew' Herman <her3@sphinx.uchicago.edu>
  2482. Subject: GIF
  2483.  
  2484.  
  2485. I have just postedto the net (comp.sys.mac) for help. but I'm going to request
  2486. here also if it's O.K.
  2487. I'm looking for various file formats.... In particular GIF developed by
  2488. CompuServe.  ie. I have a 8bit deep pixel map and I want to convert it into
  2489. something useful that I can eventually print out on a lazerwriter.
  2490. thanks
  2491. Ben Herman
  2492. her3@sphinx.uchicago.edu
  2493.  
  2494. ------------------------------
  2495.  
  2496. Date:       Mon, 8 Feb 88 08:09:05 PST
  2497. From: PEPKE%FSU.MFENET@NMFECC.ARPA
  2498. Subject: RE: Lightspeed C Gripes (forward & post)
  2499.  
  2500. RE Error reporting:
  2501. Probably the most difficult thing to do in language translators is to recover
  2502. from errors in the program.  This applies to both top-down and bottom-up
  2503. parsers.  Comparatively little work has been done on this theoretical
  2504. problem, and so approaches tend to be ad-hoc and heuristic, which usually
  2505. produces unsatasfactory results.  It also results in a lot of just-in-case
  2506. code that has to be executed whether there is an error or not.  An approach
  2507. such as Lightspeed C uses does not need this code, which I think is a major
  2508. reason for it's speed.
  2509.  
  2510. RE Optimization:
  2511. I know this is a religious issue, but no flames please.  Lightspeed C does
  2512. some pretty dumb things, especially in tight loops, but I really don't
  2513. care.  Personally, I find that I can hand-optimize the important sections
  2514. of the code and get a speed improvement of a factor of three or four, which
  2515. is a greater difference than I have seen between the optimizations of Mac C
  2516. compilers.  One of the reasons that I can do this is that the speed of
  2517. Lightspeed C allows me to try out different things and put in timing code
  2518. with very little cost.  For me, this works better than having the
  2519. compiler's optimizations squeeze 10% extra speed out of the code that I
  2520. know does not get called that often and use up my time doing it.
  2521.  
  2522. I am not trying to say that MPW C is not a good compiler or that their
  2523. traditional, solid, theory-intensive approach is in any way "wrong."
  2524. I am just trying to say that Lightspeed's different approach has something
  2525. to be said for it as well.  I hate to see it flamed simply because it is
  2526. different.
  2527.  
  2528. Eric Pepke                           pepke%fsu.mfenet@nmfecc.arpa
  2529. Supercomputer Computations           pepke%scri.hepnet@lbl-csa2.arpa
  2530.    Research Institute                pepke%fsu.bitnet@wiscvm.wisc.edu
  2531. Florida State University
  2532.  
  2533. Disclaimer: My employers seldom even LISTEN to my opinions.
  2534. Meta-disclaimer: Any society that needs disclaimers has too many lawyers.
  2535.  
  2536. ------------------------------
  2537.  
  2538. Date: Mon, 07 Mar 88 15:40:10 PLT
  2539. From: Will Fitzpatrick <60255873%WSUVM1.BITNET@forsythe.stanford.edu>
  2540. Subject: LS Pascal Grey Scale Problem
  2541.  
  2542. I have a user who is having problems doing Grey Scales in LSP on a
  2543. Mac II.  I seem to recall seeing an article on this problem In Info-Mac
  2544. but having hyperactively chucked my back issues, I can't find the information.
  2545.  
  2546. If this article included a fix, or if you have any information on the problem,
  2547. It would be appreciated If you could mail it to Harry Simpson,
  2548. 60250863@WSUVM1 on Bitnet.
  2549.  
  2550.                             -Thanks in advance,
  2551.  
  2552.                                 Will Fitzpatrick
  2553.  
  2554. ------------------------------
  2555.  
  2556. Date: Tue, 8 Mar 88 15:30:52 EST
  2557. From: aes@aplvax.jhuapl.edu (Andrew E. Scheck)
  2558. Subject: Resource numbering for XCMDs.
  2559.  
  2560. I've got an XFCN/XCMD that needs additional resources (STR#, etc.).
  2561. My convention has been to number my XCMDs from 129 on up and then
  2562. use the same number for the different resources that are needed.
  2563. With the copying of buttons, XCMDs, and other HyperCard objects
  2564. from stack to stack, it becomes obvious that this numbering
  2565. convention will soon cause conflicts. Should I be using GetNamedResource()
  2566. instead of GetResource() to allow my resources to be renumbered, or is
  2567. there some standard convention for numbering XCMDs/XFCNs and their
  2568. associated resources similar to that for DAs?
  2569.  
  2570. If GetNamedResource is the way to go, then my next question is: Is there
  2571. a way in MPW (C/Asm) to create literal string constants that do not need
  2572. runtime initialization and are not created as globals? With a declaration
  2573. such as
  2574.                char *my_resource = "\PMy_resource_name";
  2575.  
  2576. Aztec C would just place the literal string after the compiled code, but
  2577. MPW wants to place the literal text in a global area requiring runtime
  2578. initialization -- both of which can't be done from an XCMD. The only way
  2579. I can figure out to do it is with something like:
  2580.  
  2581.                  char my_resource[ 20 ];
  2582.  
  2583.          (long *)my_resource[ 0 ] = ' My_';
  2584.          (long *)my_resource[ 1 ] = 'reso';
  2585.          (long *)my_resource[ 2 ] = 'urce';
  2586.          (long *)my_resource[ 3 ] = '_nam';
  2587.          (long *)my_resource[ 4 ] = 'e   ';
  2588.          *my_resource = 16;
  2589.          res_handle = GETNAMEDRESOURCE( 'STR#', my_resource );
  2590.         
  2591. What am I missing? Help!!!!!!!!!
  2592.  
  2593. Any help will be greatly appreciated.
  2594. Please send responses to: Andy Scheck
  2595. aes@aplvax.jhuapl.edu
  2596.  
  2597. ------------------------------
  2598.  
  2599. From: Root <root%sequent@tektronix.tek.com>
  2600. Date: 14 Mar 88 22:02:08 GMT
  2601. Subject: Submission for comp-sys-mac-digest
  2602.  
  2603. Path: sequent!mntgfx!tomc
  2604. From: tomc@mntgfx.mentor.com (Tom Carstensen)
  2605. Newsgroups: comp.sys.mac,comp.sys.mac.programmer,comp.sys.mac.digest
  2606. Subject: MPW vs AZTEC Programming Systems - A Review
  2607. Keywords: MPW ATZEC C programming review
  2608. Message-ID: <1988Mar14.132113.101@mntgfx.mentor.com>
  2609. Date: 14 Mar 88 21:21:11 GMT
  2610. Organization: Mentor Graphics Corporation, Beaverton Oregon
  2611. Lines: 59
  2612.  
  2613. I have been an Aztec C user for about 3 years now, and I just recently
  2614. got the MPW Shell to run Aztec C v3.6 with, (the Aztec shell is terrible!).
  2615. Anyway, I recently ported a large program to MPW C, and after a few days,
  2616. got it to compile and run.  Here are some of my comments & results:
  2617.  
  2618.            Compile Time         Link Time        P rogram Size
  2619.         -------------------------------------------------------
  2620. MPW           30:30               75 sec.         78K   (79660 bytes)
  2621.  
  2622. AZTEC         23:10               72 sec.         83K   (84000 bytes)
  2623.  
  2624. My main complaint about MPW is that is does not have the capability
  2625. of having pre-compiled include files.  In this program I have about
  2626. 20 .c files, and compiling with the -p option you tells you as it
  2627. reads in each .h files.  It spends OVER HALF the time reading in
  2628. the .h files, and it has to read them all in for every .c file.
  2629.  
  2630. Also, you CANNOT compile very large functions on a 1 MEG mac.  I was
  2631. forced to break up a couple functions so they would compile.
  2632. It also frequently crashed when it ran out of memory.
  2633.  
  2634. ALSO, MPW C  DOES NOT !!! conform to standard C.  It considers
  2635. '\n' nad '\r' to be the same (????) and does not guarantee the
  2636. behavier of the ++ and -- operators.
  2637.  
  2638. A MAJOR PLUS!!! MPW C does type check the calls to the ROM.  The
  2639. ROM calls are delared in the include files, and it tells you when
  2640. your not passing the right type thing or the # of arguments is off.
  2641. A VERY NICE feature.  It does, howevery spew out too many redundant
  2642. non-meaningful error messages a lot of the time.
  2643.  
  2644.  
  2645. MPW 2.0.2 C now includes rom call function that DO NOT include
  2646. their glue of automatically converting pascal stirngs to C strings.
  2647. This liked this, since I don't want function doing things I didn't
  2648. tell them to do.
  2649.  
  2650. ONE PROBLEM:  MPW C define TRUE to be 1 and FALSE to be 0.  This will
  2651. cause problbem if you return TRUE in a function you pass to the ROM
  2652. (i.e. ModalDialog).  It expects TRUE to be (-1) 0xff.
  2653.  
  2654. Overall I like the MPW development system far better then AZTEC, but
  2655. the compile time is much greater.  The non-ability to have inline
  2656. assembly code in MPW is more than made up for in the assembly that
  2657. procudes compatible object files.  But for now, I think I'll use
  2658. the MPW Shell, with the Aztec C compiler.
  2659.  
  2660. MAIN COMPLAINT ABOUT MPW SHELL:  TOOLS ARE HUGE.  the average tool
  2661. is 15-25K in size, (why so big to do so little??).  Aztec "tools"
  2662. are much much smaller.  You end up having over 1MEG of tools (ugh!)
  2663.  
  2664. :------------------------------------------------------------:
  2665. : Tom Carstensen         Usenet: tomc@mntgfx.MENTOR.COM      :
  2666. : Mentor Graphics                Delphi: CARSTENSEN          :
  2667. :                                GEnie:  XPC23637            :
  2668. :                                                            :
  2669. :     . . . about the world we live in, and live in general. :
  2670. :                                       - Depeche Mode       :
  2671. :------------------------------------------------------------:
  2672.  
  2673. ------------------------------
  2674.  
  2675. Date: 6 Mar 88  9:07 -0600
  2676. From: Grant Delaney <delaney%wnre.aecl.cdn@ean.ubc.ca>
  2677. Subject: MACWRITE file format wanted
  2678.  
  2679. I am passing this request on for a friend and as I only receive the Digest
  2680. I would appreciate replies by email.
  2681.  
  2682.   What he would like to know is the MacWrite file format.  He is trying to
  2683. to create a MacWrite readable file from some software he is writing.  Any
  2684. help comments etc. would be greatly appreciated.
  2685.  
  2686. Grant Delaney
  2687.  
  2688.     -======================================================-
  2689.                     H. Grant Delaney
  2690.                 Pinawa, Manitoba Canada
  2691.                 (204) 753-2311 Ext. 3119
  2692.         Home        (204) 753-2663
  2693.  
  2694. cdn       delaney@wnre.aecl.cdn
  2695. csnet  delaney%wnre.aecl.cdn@ubc.csnet or delaney%wnre.aecl.cdn@Waterloo.csnet
  2696. uucp      ubc-vision!ubc-ean!delaney@wnre.aecl.cdn
  2697. bitnet    delaney%wnre.aecl.cdn@water or delaney%wnre.aecl.cdn@water.waterloo
  2698. edu       delaney%wnre.aecl.cdn@math.waterloo.edu
  2699.  
  2700.      COMPUSERVE       71640,1063
  2701.     -=======================================================-
  2702.  
  2703. ------------------------------
  2704.  
  2705. Date: Sun, 6 Mar 88 19:25 EST
  2706. From: "RSVAX::RSVAX::MRGATE::\"A1::HOLLAND,STEVEN W\""@gmr.com
  2707. Subject: Submission to INFO-MAC
  2708.  
  2709. From:    NAME: Steven W. Holland
  2710.     FUNC: Computer Science (50)
  2711.     TEL: (313)986-1510        <HOLLAND,STEVEN W AT A1 AT RSVAX>
  2712.  
  2713. Subject:  Apple LaserWriter II SC
  2714.  
  2715. The current issue of MacWorld (March 88) gives a nice review of the
  2716. differences between the new LaserWriter II's (SC, NT, NTX).  I realize
  2717. that the SC is a QuickDraw printer and does not support PostScript.
  2718. However, since the SC is apparently commanded on a bit by bit basis, I
  2719. don't see why someone could not move the PostScript interpreter into the
  2720. host machine (at the expense of speed) and have the full functionality
  2721. at an attractive price ($2800 list).    Does anyone have any reason why
  2722. this could not be done?
  2723.  
  2724. Steve Holland
  2725. holland%gmr.com@relay.cs.net
  2726.  
  2727. ------------------------------
  2728.  
  2729. Date: Tue, 23 Feb 88 19:55 CST
  2730. From: <SPCLAR%MACALSTR.BITNET@forsythe.stanford.edu>
  2731. Subject: Color QD -> ReGIS?
  2732.  
  2733.         Does anyone have information about converting Color QuickDraw
  2734. commands to ReGIS? I'm interested in sending ReGIS commands to a GiGi
  2735. (archaic color DEC terminal), in order to get (sort of) color on my SE.
  2736. Am I getting in deeper than I should? More to the point, has someone done this
  2737. already? The color part isn't too important, I could hack it myself if I had
  2738. the basic structure.
  2739.         Thanks,
  2740.                 Petey Clark
  2741.                 SPCLAR@MACALSTR.BITNET
  2742.  
  2743.         Opinions? Where do you see opinions?
  2744.  
  2745. ------------------------------
  2746.  
  2747. Date: Tue, 23 Feb 88 11:15:17 EST
  2748. From: cperry%bert.mitre.org@gateway.mitre.org
  2749. Subject: IBM PC display font
  2750.  
  2751. Does anyone have a Macintosh font that displays characters as they
  2752. would be displayed on an IBM PC family (PS/2 also?) screen?
  2753.  
  2754. Names, addresses and other pointers appreciated.
  2755.  
  2756. Chris
  2757. ARPANET:  cperry@gateway.mitre.org
  2758. Phone:  (703) 883-6235
  2759.  
  2760. ------------------------------
  2761.  
  2762. Date: Wed, 24 Feb 88 09:10:12 EST
  2763. From: cperry%bert.mitre.org@gateway.mitre.org
  2764. Subject: Satellite coverage program
  2765.  
  2766. I'm looking for a program, preferably shareware or public
  2767. domain, that overlays satellite spot antenna beam coutours
  2768. on an earth map using a Macintosh.
  2769.  
  2770. I'm making this inquiry for a friend.  Please send replies
  2771. to "cperry@gateway.mitre.org".  Thanks very much.
  2772.  
  2773. Chris Perry
  2774.  
  2775. ------------------------------
  2776.  
  2777. Date: 4 Mar 88 10:07:00 EST
  2778. From: "NRL::MCCOWAN" <mccowan%nrl.decnet@nrl.arpa>
  2779. Subject: NEC LC890
  2780.  
  2781.  
  2782. We have just received a NEC LC890 Postscript printer.  It seems to work fine
  2783. when we print from a Mac application over the AppleTalk network.  If, however,
  2784. I create a postscript file using Command-K, and try to send it to the printer
  2785. using SendPS, nothing happens.  Any ideas?
  2786.  
  2787. Thanks,
  2788.  
  2789. Bob McCowan
  2790. Mccowan@nrl.arpa
  2791.  
  2792. ------------------------------
  2793.  
  2794. Date: Mon, 7 Mar 88 08:32:41 PST
  2795. From: Steve Dennett <DENNETT@SRI-NIC.ARPA>
  2796. Subject: Non-Apple Printers for Mac
  2797.  
  2798.  
  2799. My query on non-Apple printers for the Mac generated only a few
  2800. responses.  The alternatives seem to be:
  2801.  
  2802. 1) The Grappler by Orange Micro, which is a hardware solution, a
  2803.    box that converts Apple printer codes and serial to parallel so
  2804.    you can plug in non-Apple printers.  No one reported on how well
  2805.    or poorly this works (I don't think the LQ version has been released
  2806.    yet).
  2807.  
  2808. 2) The company SoftStyle [808-396-6368] makes printer drivers for non-
  2809.    Apple printers.  One user reported that they were "reasonably
  2810.    satisfied" with the driver they make for the HP Laserjet.  I presume
  2811.    you have to rig up your own serial connection.
  2812.  
  2813. 3) The Seikosha 1000 is a 9-pin printer that is compatible with the
  2814.    Imagewriter.  It was reviewed in the Feb. issue of Macazine as being
  2815.    better in some areas, worse in others than the Imagewriter II.  However
  2816.    it costs much less ($225 from Icon review).  Now if they would just
  2817.    come out with a 24-pin version...
  2818.  
  2819. Looks like there's a real opportunity there for Epson or one of the
  2820. other major printer companies to come out with a 24-pin, Mac
  2821. compatible printer.
  2822.  
  2823. Steve Dennett
  2824.   dennett@sri-nic.arpa
  2825.  
  2826. ------------------------------
  2827.  
  2828. Date: Mon, 7 Mar 88 21:09:37 PST
  2829. From: dplatt@coherent.com (Dave Platt)
  2830. Subject: Another Mac virus on the loose?
  2831.  
  2832. The following posting appeared in comp.sys.mac this evening.  If you have
  2833. any information about the virus reported in this posting, please speak up!
  2834.  
  2835. From: borton@net1.ucsd.edu (Chris Borton)
  2836. Subject: I've got a virus and I don't like it
  2837. Keywords: virus
  2838. Message-ID: <4731@sdcsvax.UCSD.EDU>
  2839. Date: 8 Mar 88 02:04:12 GMT
  2840. Sender: nobody@sdcsvax.UCSD.EDU
  2841. Reply-To: borton@net1.UUCP (Chris Borton)
  2842. Organization: UCSD Network Operations Group
  2843. Lines: 36
  2844.  
  2845. This is a warning and plea for more information, if anyone has any. We just
  2846. discovered a virus in some of our systems (not all) at work today, and it has
  2847. permeated my system at home as well.  The symptoms are simple:
  2848.  
  2849. INIT 32 in System File
  2850.  
  2851. nVIR resources in various applications and the System File.
  2852.  
  2853. This sucker is tricky -- it is getting itself loaded before any INITs do (we
  2854. believe the INIT 32 is just a teaser), like PTCHs do, but it isn't in PTCH.
  2855. Our two best programmers spent today tracing through it and still haven't found
  2856. a real solution other than offloading and re-initializing.
  2857.  
  2858. To our knowledge it is non-malicious (yet).  The nVIR resources are usually
  2859. small, sometimes 8 bytes, sometimes ~360.  If you remove them from both
  2860. System and ResEdit, the virus won't let you run ResEdit because it is looking
  2861. for those resources and can't find them.  It occasionally beeps when running a
  2862. program.
  2863.  
  2864. We have no idea what installed this.  We are fairly certain it originated from
  2865. one of the many small programs that come over the net.  Many of these would be
  2866. perfect 'carriers' -- little demo program that's an "aww, that cute, now let's
  2867. trash it."  I'm not putting down these programs, just pointing out what I feel
  2868. is obvious.
  2869.  
  2870. I don't believe this is any cause for panic -- it hasn't done any known harm
  2871. yet.  I would, however, like to get to the bottom of this!  If it's a joke, I
  2872. don't find it very funny.  (unless it de-installs itself completely after April
  2873. Fool's Day :-)). If it is someone's graduate thesis, you get an A-.  But enough
  2874. is enough!
  2875.  
  2876. -cbb
  2877. Chris "Johann" Borton, UC San Diego     ...!sdcsvax!borton
  2878.                                         borton@ucsd.edu or BORTON@UCSD.BITNET
  2879. Letztes Jahr in Deutschland, nog een jaar hier, en dan naar Amsterdam!
  2880. "H = F cubed.  Happiness = Food, Fun, & Friends."  --Steve Wozniak
  2881.  
  2882. ------------------------------
  2883.  
  2884. End of INFO-MAC Digest
  2885. **********************
  2886. 14-Mar-88 23:27:39-PST,16343;000000000000
  2887. Mail-From: INFO-MAC-REQUEST created at 14-Mar-88 22:30:36
  2888. Date: 14 Mar 88 2230-PST
  2889. From: Moderators Jon Pugh, Dwayne Virnau, Lance Nakata
  2890. Reply-to: INFO-MAC@SUMEX-AIM.Stanford.EDU
  2891. Subject: INFO-MAC Digest   V6 #30
  2892. To: INFO-MAC@SUMEX-AIM.Stanford.EDU
  2893.  
  2894.  
  2895. INFO-MAC Digest          Tuesday, 15 Mar 1988      Volume 6 : Issue 30
  2896.  
  2897. Today's Topics:
  2898.                           Hard Disk Uploading..
  2899.                          Foreign Language Fonts
  2900.                        Boston II/WORD interaction
  2901.                               MACSERVE@PUCC
  2902.                       Anyone know of a Dimmer Cdev?
  2903.              have quiet Mac; seek silent external SCSI drive
  2904.                           2D function plotting
  2905.                              CMS hard disks
  2906.                              Fire Dept Macs?
  2907.                        Minor Wrinkle in "Suitcase"
  2908.                 MacTeX and/or TeXtures (comments, please)
  2909.               Re: DA-TERMINAL DOCUMENT IS NOT READABLE. ..
  2910.                               MacDraft 1.2a
  2911.                         Downloading from Archive
  2912.                      Carrier boards for 256K SIMMS?
  2913.                          Klondike and Sound Init
  2914.                               Re: SCSI HELP
  2915.                              Softstyle bugs
  2916.  
  2917.  
  2918. ----------------------------------------------------------------------
  2919.  
  2920. Date: Mon, 7 Mar 88 12:10:08 PST
  2921. From: nfong%cory.Berkeley.EDU@ucbvax.Berkeley.EDU (Norman Fong)
  2922. Subject: Hard Disk Uploading..
  2923.  
  2924.  
  2925. Someone asked about software to transfer copy-protected applications to a
  2926. hard disk.  For the few or exotic programs that are still protected,
  2927. you can try Copy II Mac from Central Point Software or Hard Disk Util
  2928. from FWB Software.  Copy II can upload about 20 programs, Hard Disk Util
  2929. supports many more, but costs more.  FWB handles updating of the program
  2930. by coming out with Paramter Disks.  (Number 6 is the lastest.)
  2931. Call 415-474-8055 for more information.
  2932.  
  2933. nfong@cory.Berkeley.EDU
  2934.  
  2935. Claimer:  My views are totally skewed because I work for FWB.. (HA!)
  2936.  
  2937. ------------------------------
  2938.  
  2939. Date: Mon, 7 Mar 88 12:21:11 PST
  2940. From: Mark Richer <RICHER@SUMEX-AIM.Stanford.EDU>
  2941. Subject: Foreign Language Fonts
  2942.  
  2943. Linguists' Software has both Laserwriter and Imagewriter fonts. My wife
  2944. tried to use Symbol (for the greek) with Times ROman, but the leading
  2945. gets all screwed up. She purchased the Greek Laser fonts from Linguists
  2946. and has been pleased with them so far. They also  have Hebrew and Korean
  2947. fonts.
  2948.  
  2949. Linguists' SOftware
  2950. 106R Highland St.
  2951. South Hamilton, MA 01982
  2952.  
  2953. 617-468-3037
  2954.  
  2955. Good luck,
  2956.  
  2957. Mark
  2958.  
  2959. P.S. Linguists' also claim their postscript (laser) fonts also work on
  2960. the linotronic - we haven't tried the one (Greek) font we have yet on
  2961. the Linotronic so it's a matter of trust at this point).
  2962.  
  2963. ------------------------------
  2964.  
  2965. Date: Mon, 14 Mar 88 00:26:29 est
  2966. From: levine@eniac.seas.upenn.edu (Jonathan M. Levine)
  2967. Subject: Boston II/WORD interaction
  2968.  
  2969.  
  2970.   I'm using BostonII-Word, 12 point, and I'm running into a display oddity:
  2971. the tops of curved capital letters (eg P, Q, R) appear squished one or two
  2972. pixel lines.  The problem doesn't carry over into printing, so it's more
  2973. annoying than horrible.  Any suggestions as to solutions?  (Line spacing is
  2974. 12 pt, by the way, and between paragraph spacing is 24 pt.)
  2975.  
  2976.                                 Jonathan
  2977.  
  2978. ------------------------------
  2979.  
  2980. Date: Mon,  7 Mar 88  14:28:42 EST
  2981. From: Rahaim%UMass.BITNET@Forsythe.Stanford.EDU
  2982. Subject: MACSERVE@PUCC
  2983.  
  2984.   I have also noticed that it hasnt been getting new files. I am trying
  2985. to get a copy of Risk but Macserve@PUCC hasnt gotton it.. If any one is
  2986. willing to mail me the binhexed version can you let me know?
  2987.       Jason Rahaim
  2988.         Rahaim@Umass.Bitnet
  2989.  
  2990. ------------------------------
  2991.  
  2992. Date: Mon, 7 Mar 88 14:22:37 PST
  2993. From: Carl C. Hewitt <carl@jupiter.ucsc.edu>
  2994. Subject: Anyone know of a Dimmer Cdev?
  2995.  
  2996. I found a wonderful CDEV a while back that would dim the screen on Mac II's
  2997. after it had been idle for a while, but the disk I had it on crashed, so
  2998. I lost it.  Does anyone know where that program may be found again?
  2999. Thanks for your help..
  3000.                     -- Carl
  3001. [
  3002. I posted a beta of Dimmer here some time ago.  It turns out that that beta was
  3003. not supposed to be posted, but since it is too late, the author even provided
  3004. a patch for the time fuse.  The patch is in one of the many digests residing
  3005. in the archives, but I don't have time to go look for it again.
  3006.  
  3007. Dimmer is supposed to go commercial sometime.  Watch for it.
  3008.  
  3009. JP
  3010. ]
  3011. /---------------------------------------------------------------------------\
  3012. |   uucp:  ucbvax!ucscc!carl            |  Carl C. Hewitt                   |
  3013. | bitnet:  carl@ucscc.bitnet            |  UCSC Computer Center             |
  3014. |   arpa:  carl@ucscc.ucsc.edu          |  Santa Cruz, California           |
  3015. \---------------------------------------------------------------------------/
  3016.  
  3017. ------------------------------
  3018.  
  3019. Date: Mon, 7 Mar 88 18:23:16 EST
  3020. From: David A. Levitt <levitt@MEDIA-LAB.MEDIA.MIT.EDU>
  3021. Subject: have quiet Mac; seek silent external SCSI drive
  3022.  
  3023.  
  3024. I use MacIIs for music and must have quiet.  I have an external hard
  3025. drive on a 12' SCSI extension, and where I can, I disconnect the
  3026. MacII's internal fan.  I LEAVE THE COVER OFF and with the one bus card
  3027. for video and no internal hard disk, it stays cool and works just
  3028. fine.  I live in dusty Cambridge, so I'll have to carefully dust or
  3029. vaccuum the innards -- especially the floppy drive -- every so often.
  3030.  
  3031. Who's found a silent MacII SCSI disk?  How quiet is the one called
  3032. WhisperJet (or whatever)?  Any leads on a quiet internal fan?
  3033.  
  3034. The footprint and noise problems with the MacII are clearly its worst
  3035. elements, the sure signs that Steve Jobs contributed important
  3036. elements to the original Mac and left some holes when he departed.
  3037.  
  3038. ------------------------------
  3039.  
  3040. Date: Mon, 7 Mar 88 22:34 AST
  3041. From: Stan Armstrong <ARMSTRONG%STMARYS.BITNET@forsythe.stanford.edu>
  3042. Subject: 2D function plotting
  3043.  
  3044. A colleague in our physics department needs a program to plot functions in
  3045. one variable. We have a fine 3D program, but it has no way to do 2D plots.
  3046. To begin with he wants to illustrate fourier transforms by successively
  3047. overlaying sine curves and showing his students the results. He has been
  3048. doing this by hand!! He is willing to write a basic program to do what he
  3049. wants, but he is new to the Mac. I thought perhaps someone out there could
  3050. save him some trouble.
  3051.  
  3052. If you can help, reply direct to me, Stan Armstrong
  3053.  
  3054. ARMSTRONG@STMARYS.BITNET
  3055.  
  3056. Thanks.
  3057.  
  3058. ------------------------------
  3059.  
  3060. Date: Mon, 7 Mar 88 18:04:24 EST
  3061. From: MacTechnics_User_Group@um.cc.umich.edu
  3062. Subject: CMS hard disks
  3063.  
  3064. We're having strange problems with our CMS hard disks.  The problem is
  3065. pretty technical, but we're not sure where to turn at this point.
  3066.     1) The problem only occurs on Mac II's
  3067.     2) The problem only occurs when a CMS-80 is the startup disk.
  3068.     3) The problem is that the SCSI bus hangs whenever we make a request
  3069.        for data that returns an error (such as a check condition). The
  3070.        bus is hanging in the Status phase (it appears that the device
  3071.        is signalling the Mac that there is no more data to send and the
  3072.        Mac can't handle it).
  3073.     4) The problem occurs when we talk to ANY SCSI device, but only when
  3074.        the CMS disk is the startup.
  3075.  
  3076. (An easy way to test the problem is to do an Inquire and ask for 250 bytes,
  3077. the drive should return with an error but still have a valid number of
  3078. bytes returned).
  3079.  
  3080. I have checked INITs, System differences, etc, and can't find anything
  3081. unique other than the CMS drives.  Apple and Jasmine 80 Meg disks work
  3082. fine (both use the same Qantum Q280 as CMS), and the Apple ROMs work
  3083. fine if placed in a CMS drive (so the problem is apparently either
  3084. the driver or the firmware).
  3085.  
  3086. Any suggestions?
  3087.    -Eric Shapiro
  3088.     MacTechnics
  3089.     & Rock Ridge Enterprises
  3090.     (313) 663-8382 (Collect ok - or respond here)
  3091.  
  3092. ------------------------------
  3093.  
  3094. Date: Tue 8 Mar 88 09:17:22-EST
  3095. From: "Wes Williams" <GZT.EWW%OZ.AI.MIT.EDU@XX.LCS.MIT.EDU>
  3096. Subject: Fire Dept Macs?
  3097.  
  3098. I am interested in obtaining mailing addresses for Mac users that operate
  3099. their machines with the primary purpose of Fire Department administration
  3100. and emergency service incident control. The list is being compiled with
  3101. the intent of future mailings to each listed organization for the purpose
  3102. of maintaining systems/software and new products/applications.
  3103.  
  3104. If readers of this section are aware of such address please forward
  3105. them to me direct.
  3106.  
  3107. If there are systems in operation that readers are aware of and they
  3108. have no machine net address, USSnail would be valuable also.
  3109. Thx,
  3110. gzt.eww@oz.ai.mit.edu@xx.lcs.mit.edu.arpa
  3111.  
  3112. Fire Departments are the only business that has successfully resisted
  3113. change for periods greater than 100 years.
  3114.  
  3115. ------------------------------
  3116.  
  3117. Date: Tue 8 Mar 88 11:22:07-PST
  3118. From: A. E. Siegman <SIEGMAN@Sierra.Stanford.EDU>
  3119. Subject: Minor Wrinkle in "Suitcase"
  3120.  
  3121. Mac 512KE, boot disks in both internal and external drives, System 3.2,
  3122. Finder 5.3, both have "Suitcase" (a great INIT), both bring up Suitcase if
  3123. you boot from them.  But if you launch an application from the nonboot
  3124. diskette which forces a transfer of the boot volume (like MS Basic on one
  3125. of my diskettes, or MacWrite 4.6 on the other), you no longer have Suitcase
  3126. after the transfer takes place.  Unfortunate...
  3127.  
  3128. ------------------------------
  3129.  
  3130. Date: Wed, 9 Mar 88 08:47:23 EST
  3131. From: csrobe@icase.arpa (Charles S. Roberson)
  3132. Subject: MacTeX and/or TeXtures (comments, please)
  3133.  
  3134.  
  3135. First, a note of thanks to all of those who replied to my request for
  3136. help on creating overlays with MacDraft.  The grouping and locking
  3137. method is working fine.
  3138.  
  3139. Second, we receive and produce dozens of mathematical/scientific
  3140. documents a year that are formatted using Knuth's TeX system.  The
  3141. people who originally write the documents generally don't have a
  3142. rough time massaging their documents on the Suns, but we are looking
  3143. for a WYSIWYG system for the rest of our staff.  [The WYSIWYG system
  3144. must read and write TeX].
  3145.  
  3146. Two names have been given to us:
  3147.  
  3148.     MacTeX                TeXtures
  3149.     FTL Systems, Inc.        Addison-Wesley Pub. Corp.
  3150.     $750                $495
  3151.  
  3152. for TeX on the Macintosh.  Has anybody used either of these or at least
  3153. seen a demo?  Are there any other packages out there for processing TeX
  3154. on the Mac.  We have seen a MathType demo which looks good, but it only
  3155. sets equations not text.
  3156.  
  3157. PLEASE, e-mail directly to me (csrobe@icase.arpa) since I am NOT a member
  3158. of this mailing list!
  3159.  
  3160. Thanks in advance,
  3161. -chip
  3162. +-------------------------------------------------------------------------+
  3163. |Chip Roberson                ARPANET:  csrobe@icase.arpa                 |
  3164. |1105 London Company Way      BITNET:   $csrobe@wmmvs.bitnet              |
  3165. |Williamsburg, VA 23185       UUCP:     ...!uunet!pyrdc!gmu90x!wmcs!csrobe|
  3166. +-------------------------------------------------------------------------+
  3167.       "One world is enough, for all of us..."         - The Police.
  3168.  
  3169. ------------------------------
  3170.  
  3171. Date: Wed, 9 Mar 88 18:28:16 MET
  3172. From: Norbert Lindenberg - U Karlsruhe <norbert@ira.uka.de>
  3173. Subject: Re: DA-TERMINAL DOCUMENT IS NOT READABLE. ..
  3174.  
  3175. As mentioned in info-mac digest v6 #023, the Terminal DA manual is a
  3176. WriteNow document. Type and creator should be nX^d and nX^n,
  3177. respectively.
  3178.  
  3179. -- Norbert
  3180. [
  3181. If someone with time could fix it and repost it, I think that might help some
  3182. people.
  3183.  
  3184. JP
  3185. ] 9-Mar-88 15:05:31-PST,1089;000000000001
  3186.  
  3187. ------------------------------
  3188.  
  3189. Date: Wed, 9 Mar 88 18:04:19 est
  3190. From: ulrich@grasp.cis.upenn.edu (Nathan Ulrich)
  3191. Subject: MacDraft 1.2a
  3192.  
  3193.  
  3194. I have a copy of MacDraft 1.2a which I use extensively.  However, I am having
  3195. problems running in on a Mac II.  Although it works fine in every other mode
  3196. (and utilizes the larger screen) I cannot enter more than two or three charac-
  3197. ters of text without it crashing.  The only info I have about the program is
  3198. that it is a product of Innovative Data Design--no address or phone number.
  3199.  
  3200. Does anyone have information on:  1) A solution to this crashing problem;
  3201. 2) An address for I.D.D.; or 3) where I can get a newer version (?) of this
  3202. application for a Mac II?
  3203.  
  3204. Thanks.
  3205.  
  3206. Nathan Ulrich
  3207. ulrich@grasp.cis.upenn.edu
  3208.  
  3209. ------------------------------
  3210.  
  3211. Date: 03/05/88  1025
  3212. From: <ottorini%FRCIIL71.BITNET@CUNYVM.CUNY.EDU>
  3213. Subject: Downloading from Archive
  3214.  
  3215.  
  3216.    I am not familiar with Arpa, because on the Earn-Bitnet Network.
  3217.    Could someone tell me which command I should send to INFO-MAC
  3218. to download archived files ( if this is possible throught my Earn/Arpa
  3219. gateway)?
  3220.   Many Thanks.
  3221.   Jean-Marc Ottorini, Nancy, France.
  3222. FRCIIL71
  3223.  
  3224. [
  3225. You cannot download things from INFO-MAC without ARPAnet access.  You cannot
  3226. send mail here and have things sent back to you.  You must use FTP to get
  3227. file from here.  Could someone please explain how you access MacServe?
  3228.  
  3229. JP
  3230. ]10-Mar-88 02:29:11-PST,657;000000000001
  3231.  
  3232. ------------------------------
  3233.  
  3234. Date: Thu, 10 Mar 88 11:28:02 ECT
  3235. From: FALK%NORUNIT.BITNET@CUNYVM.CUNY.EDU
  3236. Subject: Carrier boards for 256K SIMMS?
  3237.  
  3238. Thanks in advance ! Chris
  3239.  
  3240. ------------------------------
  3241.  
  3242. From: LEN04474%nuacc.acns.nwu.edu@forsythe.stanford.edu
  3243. Date: Thu, 10 Mar 88 21:08 CST
  3244. Subject: Klondike and Sound Init
  3245.  
  3246.  
  3247. I just read a review of a solitaire (sp?) game called Klondike.  The program
  3248. sounds real nice and I was wondering if there was anybody out there who had
  3249. it and could post it (I am new to this group so I do not know if it might
  3250. have been posted in the past.)
  3251.  
  3252. Also, I downloaded the sound init, but when I do a startup I get system
  3253. error id 12.  Has anybody else had any problems with the sound init program?
  3254.  
  3255. Thanks.
  3256.  
  3257. -Robert Lentz
  3258.  LEN04474@NUACC.ACNS.NWU.EDU
  3259.  
  3260. ------------------------------
  3261.  
  3262. From: lampson%chgv04.DEC@decwrl.dec.com (Mike Lampson, Central Area
  3263. From: Prove-It Delivery Specialist)
  3264. Date: 12 Mar 88 19:53
  3265. Subject: Re: SCSI HELP
  3266.  
  3267. From Delphi Mac Digest, V4 #5:
  3268. > I have a 512KE upgraded with a MacMemory RAM upgrade to 2 megs.  When I
  3269. > got the memory upgrade, I figured that eventually I'd add a SCSI port
  3270. > and a hard disk. Today I called my dealer and asked about th e MacMemory
  3271. > SCSI port, which is the only one compatible with my MacMemory RAM
  3272. > upgrade.  He told me that they weren'trecommending the SCSI port add-on
  3273. > because their customers who had gotten them pretty much indicated that
  3274. > they didn't wor k (!!!).  So now -- any suggestions as to what I can do?
  3275.  
  3276. MacMemory memory/SCSI compatibility problems had hit me too.  First, MacMemory
  3277. has two SCSI port products, TheMax and TheMax 2.  Only TheMax 2 works with
  3278. the memory upgrade.  Even after getting the proper SCSI kit, my dealer was
  3279. still unable to get it to work.  MacMemory, however, was willing the install
  3280. the SCSI port if I shipped my Mac to them.  I did so, and it works perfectly.
  3281.  
  3282. I have no affliation with MacMemory other than as a satisfied customer.
  3283.  
  3284. --
  3285.   Mike Lampson
  3286.   UUCP:  {allegra,decvax,hplabs,ihnp4,ucbvax,...}!decwrl!chgv04.dec.com!lampson
  3287.   ARPA:  Lampson@CHGV04.DEC.COM  -or-  Lampson%CHGV04.dec@DECWRL.DEC.COM
  3288.  
  3289. ------------------------------
  3290.  
  3291. Date: Mon, 14 Mar 1988 02:45 PST
  3292. From: UZIFF003@DBIUNI11.BITNET
  3293. Subject: Softstyle bugs
  3294.  
  3295. Date: 14 March 1988, 11:00:57 SET
  3296. From: Jonathan Pool             49-521-106-2752      UZIFF003 at DBIUNI11
  3297.  
  3298. Has anyone found Softstyle (Honolulu) willing to respond usefully to
  3299. your queries about bugs in its software?  I purchased Printworks for the
  3300. Mac and received the Epson drivers.  The printing quality was
  3301. ridiculous, including even words that overlapped with each other (when
  3302. italics were used).  I documented the bugs in detail and gave Softstyle
  3303. months to reply, but the best it did was to send me a short letter
  3304. mainly ignoring the problems and offering no solution.  And this when
  3305. Printworks was released a whole year after Softstyle accepted my order
  3306. and charged my credit account.
  3307.  
  3308. ------------------------------
  3309.  
  3310. End of INFO-MAC Digest
  3311. **********************
  3312. 20-Mar-88 08:15:48-PST,20317;000000000000
  3313. Mail-From: INFO-MAC-REQUEST created at 18-Mar-88 21:28:43
  3314. Date: 14 Mar 88 2230-PST
  3315. From: Moderators Jon Pugh, Dwayne Virnau, Lance Nakata
  3316. Reply-to: INFO-MAC@SUMEX-AIM.Stanford.EDU
  3317. Subject: INFO-MAC Digest   V6 #27
  3318. To: INFO-MAC@SUMEX-AIM.Stanford.EDU
  3319.  
  3320.  
  3321. INFO-MAC Digest          Tuesday, 15 Mar 1988      Volume 6 : Issue 27
  3322.  
  3323. Today's Topics:
  3324.                          CheapBeep (in 2 parts)
  3325.                                Giffer 1.0
  3326.                               CSLI Reports
  3327.                                FarceFilms
  3328.                             More Venice Sizes
  3329.                    A&F Review -- Feb '88 (in 2 parts)
  3330.                          Dungeon of Doom Update
  3331.                       QuickerGraf 1.0 (in 3 parts)
  3332.                            1040EZ (in 4 parts)
  3333.                                  4D Say
  3334.                                Font Stack
  3335.                             Color Icon Editor
  3336.                               Paint DA 2.0
  3337.                          TN123 plus many others
  3338.                               FarceFilm 52
  3339.            HyperCard report on HyperTEXT workshop (in 4 parts)
  3340.                 Collected bug reports (& patches) for CAP
  3341.                        Round window for Earth Idle
  3342.                             Password Utility
  3343.                               Proper Icons
  3344.                            [TEAC tape editor]
  3345.  
  3346.  
  3347. ----------------------------------------------------------------------
  3348.  
  3349. Date: Tue 9 Feb 88 22:08:14-PDT
  3350. From: Jason Daida <JASON@SPOCC.STANFORD.EDU>
  3351. Subject: CheapBeep (in 2 parts)
  3352.  
  3353.         "Here is an amusing way to add variety and personality to your
  3354. Macintosh.  Now you can easily choose several sounds to be randomly
  3355. selected from as a replacement for the old SysBeep.
  3356.         "CheapBeep is a Control Panel device file for System 4.1 and later.
  3357. These systems have a Control Panel desk accessory which can open files of
  3358. type 'cdev' and allow them to display information and accept commands
  3359. through the Control Panel window." - from CheapBeep's documentation.
  3360.  
  3361. [Moderator--These files contain CheapBeep and documentation plus sample
  3362. sounds.]  These files were stuffed and binhexed.  Enjoy!
  3363.  
  3364. Jason Daida
  3365. j.jmd@macbeth.stanford.edu
  3366. jason@spocc.stanford.edu
  3367.  
  3368. [archived as
  3369.  
  3370. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>CDEV-CHEAPBEEP-PART1.HQX
  3371. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>CDEV-CHEAPBEEP-PART2.HQX
  3372.  
  3373. - Lance ]
  3374.  
  3375. ------------------------------
  3376.  
  3377. Date: Thu 11 Feb 88 11:35:55-GMT
  3378. From: Jeff Shulman <SHULMAN@SDR>
  3379. Subject: Giffer 1.0
  3380.  
  3381. [ Uploaded from Delphi by Jeff Shulman (JEFFS) ]
  3382.  
  3383. Name: GIFFER 1.0
  3384. Date: 10-FEB-1988 21:16 by BEAUZEAU
  3385.  
  3386. [ Updated 10-FEB-1988 21:16 by BEAUZEAU. Giffer 1.0, a significant
  3387. improvement over 0.96.  This version is BeerWare. Please read the
  3388. documentation for details.  It's included in the StuffIt file. ]
  3389.  
  3390.   Here is Giffer for the Macintosh II only.  It will display GIF and Thunder-
  3391. Scan images, in full color or grays.  Here also are a few 256-color GIF files.
  3392. I have much more, so if there's interest, I'll post them.  Also, GIF files may
  3393. be found on CompuServe in the PICS forum.  These images look great...just like
  3394. photographs.
  3395.   GIF is Graphics Interchange Format, a graphics storage and compression
  3396. standard developed by CompuServe Information Service.  GIF files are
  3397. transferable across computer types, and there are programs available for many
  3398. different Micros to display them.
  3399.   Steve Blackstock, Mac II, Giffer.  Tell me if you like it!
  3400.  
  3401. [archived as
  3402.  
  3403. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>GIFFER-10.HQX
  3404.  
  3405. This version replaces version 0.96.
  3406.  
  3407. - Lance ]
  3408.  
  3409. ------------------------------
  3410.  
  3411. Date: Tue 9 Feb 88 22:49:29-PST
  3412. From: Ron Nash <NASH@Russell.Stanford.EDU>
  3413. Subject: CSLI Reports
  3414.  
  3415. A list of reports published by The Center for the Study of Language
  3416. and Information at Stanford University is now available in hypercard
  3417. format. Abstracts are included.
  3418.  
  3419. The stack is available by anonymous ftp from csli.stanford.edu.
  3420. The relevant file is: pub/csli-abstracts.hqx.
  3421.  
  3422. Those without internet access can send a 3.5" disk and a self-addressed
  3423. envelope to:
  3424.  
  3425.     Publications
  3426.     CSLI
  3427.     Ventura Hall
  3428.     Stanford University
  3429.     Stanford, CA  94305-4115
  3430.  
  3431.  
  3432. (CSLI was founded in 1983 by researchers from Stanford University,
  3433.  SRI International, and Xerox PARC to further research and development
  3434.  of integrated theories of language, information, and computation.)
  3435.  
  3436.  
  3437. Ron Nash
  3438. Center for the Study of Language and Information
  3439. nash@russell.stanford.edu
  3440.  
  3441. [archived as
  3442.  
  3443. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>HYPERCARD-CSLI-REPORT-PART1.HQX
  3444. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>HYPERCARD-CSLI-REPORT-PART2.HQX
  3445. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>HYPERCARD-CSLI-REPORT-PART3.HQX
  3446. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>HYPERCARD-CSLI-REPORT-PART4.HQX
  3447.  
  3448. - Lance ]
  3449.  
  3450. ------------------------------
  3451.  
  3452. Date: Fri 12 Feb 88 10:47:31-GMT
  3453. From: Jeff Shulman <SHULMAN@SDR>
  3454. Subject: FarceFilms
  3455.  
  3456. The following messages contain, StuffIt'ed, FarceFilms 45 - 51:
  3457.  
  3458. FarceFilm 45: "Things Just Get Curiouser and Curiouser"
  3459. FarceFilm 46: "The Right Tool For The Job"
  3460. FarceFilm 47: "Holographic Education Pt. 1"
  3461. FarceFilm 48: "Holographic Education Part II"
  3462. FarceFilm 49: "Gamma Gamma Pu"
  3463. FarceFilm 50: "Holographic Education Part 3"
  3464. FarceFilm 51: "Virus! Cough?"
  3465.  
  3466.                                                         Jeff
  3467.  
  3468. [archived as
  3469.  
  3470. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>ARTS-FARCES-FILM-45.HQX
  3471. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>ARTS-FARCES-FILM-46.HQX
  3472. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>ARTS-FARCES-FILM-47.HQX
  3473. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>ARTS-FARCES-FILM-48.HQX
  3474. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>ARTS-FARCES-FILM-49.HQX
  3475. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>ARTS-FARCES-FILM-50.HQX
  3476. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>ARTS-FARCES-FILM-51.HQX
  3477.  
  3478. - Lance ]
  3479.  
  3480. ------------------------------
  3481.  
  3482. Date: Tue, 16 Feb 88 13:25:41 PST
  3483. From: digiorgi@VLSI.JPL.NASA.GOV
  3484. Subject: More Venice Sizes
  3485.  
  3486. Some add'l sizes of Venice fonts, StuffIt format, for general consumption.
  3487.  
  3488. Godfrey DiGiorgi
  3489. digiorgi@jpl-vlsi.arpa
  3490. February 11, 1988
  3491.  
  3492. [archived as
  3493.  
  3494. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>FONT-VENICE.HQX
  3495.  
  3496. - Lance ]
  3497.  
  3498. ------------------------------
  3499.  
  3500. Date: Tue 16 Feb 88 10:17:14-GMT
  3501. From: Jeff Shulman <SHULMAN@SDR>
  3502. Subject: A&F Review -- Feb '88 (in 2 parts)
  3503.  
  3504. [ Uploaded from Delphi by Jeff Shulman ]
  3505.  
  3506. Name: ARTS & FARCES REVIEW -- FEB '88
  3507. Date: 15-FEB-1988 00:22 by ARTSFARCES
  3508.  
  3509. This is the Arts & Farces Review for February 1988.  It's in MicroFilm
  3510. format and as such requires MicroFilm Reader V1.0 or later for use.
  3511.  
  3512. [archived as
  3513.  
  3514. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>ARTS-FARCES-FEB88-PART1.HQX
  3515. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>ARTS-FARCES-FEB88-PART2.HQX
  3516.  
  3517. - Lance ]
  3518.  
  3519. ------------------------------
  3520.  
  3521. Date: Tue 16 Feb 88 10:19:22-GMT
  3522. From: Jeff Shulman <SHULMAN@SDR>
  3523. Subject: Dungeon of Doom Update
  3524.  
  3525. [ Uploaded from Delphi by Jeff Shulman ]
  3526.  
  3527. Name: DOOM UPDATE
  3528. Date: 16-FEB-1988 00:51 by JONES
  3529.  
  3530. Doom Update updates The Dungeon of Doom version 3.0 to 5.3 and 4.0 to 5.4.
  3531. It installs important new information on the status of the dungeon into the
  3532. programs.
  3533.  
  3534. [archived as
  3535.  
  3536. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>GAME-DUNGEON-OF-DOOM-UPDATE.HQX
  3537.  
  3538. - Lance ]
  3539.  
  3540. ------------------------------
  3541.  
  3542. Date: Mon 22 Feb 88 09:56:15-GMT
  3543. From: Jeff Shulman <SHULMAN@SDR>
  3544. Subject: QuickerGraf 1.0 (in 3 parts)
  3545.  
  3546. [ Uploaded from Delphi by Jeff Shulman ]
  3547.  
  3548. Name: QUICKERGRAF 1.0
  3549. Date: 22-FEB-1988 07:18 by JEFFS
  3550.  
  3551. This is version 1.0 of QuickerGraf (formerly known as QuickerDraw) from
  3552. Andy Hertzfeld.  QuickerGraf is a high performance extension to Color
  3553. QuickDraw that speeds up many common operations by a factor of 3 or so.  It
  3554. comes in the form of a cdev that you drag into your system folder. It is
  3555. really only useful in the 8-bit mode on the Mac II.  Andy granted
  3556. permission to distribute it anywhere you like non-commercially; He is still
  3557. retaining all commercial rights.
  3558.  
  3559. Also included is a benchmark/demo program for QuickerGraf that demonstrates
  3560. some of the speed-ups.
  3561.  
  3562. [archived as
  3563.  
  3564. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>INIT-QUICKERGRAF-10-PART1.HQX
  3565. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>INIT-QUICKERGRAF-10-PART2.HQX
  3566. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>INIT-QUICKERGRAF-10-PART3.HQX
  3567.  
  3568. - Lance ]
  3569.  
  3570. ------------------------------
  3571.  
  3572. Date: Tue, 1 Mar 88 15:42:29 CST
  3573. From: liberte@ncsa.uiuc.edu (Dan LaLiberte)
  3574. Subject: 1040EZ (in 4 parts)
  3575.  
  3576. URGENT - get this out as soon as possible.  Dated material.
  3577.  
  3578. This Tax Stack contains everything you need to file the 1040EZ form
  3579. (tax form, tax table, worksheets, and complete IRS instructions).
  3580. The LaserWriter and ImageWriter printouts have been approved by the IRS.
  3581. If you find that this StackWorks stack works for you, please send the
  3582. shareware fee of $10.
  3583.  
  3584. [archived as
  3585.  
  3586. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>HYPERCARD-TAXFORM-1040EZ-PART1.HQX
  3587. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>HYPERCARD-TAXFORM-1040EZ-PART2.HQX
  3588. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>HYPERCARD-TAXFORM-1040EZ-PART3.HQX
  3589. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>HYPERCARD-TAXFORM-1040EZ-PART4.HQX
  3590.  
  3591. - Lance ]
  3592.  
  3593. ------------------------------
  3594.  
  3595. Date: Fri 4 Mar 88 08:46:05-GMT
  3596. From: Jeff Shulman <SHULMAN@SDR>
  3597. Subject: 4D Say
  3598.  
  3599. [ Uploaded from Delphi by Jeff Shulman ]
  3600.  
  3601. Name: 4D SAY
  3602. Date: 3-MAR-1988 13:48 by NATURAL
  3603.  
  3604. 4D Say 1.0.  4D Say is a hot little 4th Dimension External that allows the
  3605. use of the MacInTalk speech driver from within 4th Dimension.  Less than 4k
  3606. and solid as a rock.  Great for spoken error messages, alerts, welcomes,
  3607. greetings, etc.  A lot of fun, and free. A public-domain 4D External from
  3608. Djundi Karjadi and friends at Natural Intelligence Consulting.
  3609.  
  3610. [archived as
  3611.  
  3612. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>4D-SAY-10.HQX
  3613.  
  3614. - Lance ]
  3615.  
  3616. ------------------------------
  3617.  
  3618. Date: Tue 16 Feb 88 10:20:15-GMT
  3619. From: Jeff Shulman <SHULMAN@SDR>
  3620. Subject: Font Stack
  3621.  
  3622. [ Uploaded from Delphi by Jeff Shulman ]
  3623.  
  3624. Name: FONT PREVIEW STACK
  3625. Date: 14-FEB-1988 08:49 by JIMWEINRICH
  3626.  
  3627. This 10K stack is a template for printing out the complete character set
  3628. for any font (ASCII 1 to ASCII 255, excluding delete) in a neat rectangular
  3629. array.  It is especially useful for printing out downloadable laser fonts,
  3630. because it will print characters that are not accessible from the keyboard.
  3631. For reasons I don't understand, it occasionally prints a few characters
  3632. bitmapped, and on some derived fonts (like Helvetica Fractions) it fails to
  3633. print at all.  But it does work on the vast majority of fonts.  Enjoy!
  3634. It's free.  --Jim Weinrich
  3635.  
  3636. [archived as
  3637.  
  3638. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>HYPERCARD-FONT-PREVIEW.HQX
  3639.  
  3640. - Lance ]
  3641.  
  3642. ------------------------------
  3643.  
  3644. Date: Tue, 16 Feb 88 23:48:54 EST
  3645. From: eacj@tcgould.tn.cornell.edu (Julian Vrieslander)
  3646. Subject: Color Icon Editor
  3647.  
  3648. Icon Edit
  3649.  
  3650. This is an application for editing color icon resources (cicn's).
  3651. It runs only on a color-capable Mac.  After converting with BinHex,
  3652. you will need to unstuff with Stuffit.  Documentation file supplied.
  3653.  
  3654. This little gem comes from Ben Haller of AppleSauce Designs.  It is
  3655. shareware.
  3656.  
  3657. Posted by Julian Vrieslander
  3658. ARPA -  eacj@tcgould.tn.cornell.edu       BITNET - eacj@CRNLTHRY
  3659.  
  3660. [archived as
  3661.  
  3662. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>COLOR-ICON-EDITOR.HQX
  3663.  
  3664. - Lance ]
  3665.  
  3666. ------------------------------
  3667.  
  3668. Date: Tue 16 Feb 88 13:20:33-GMT
  3669. From: Jeff Shulman <SHULMAN@SDR>
  3670. Subject: Paint DA 2.0
  3671.  
  3672. [ Uploaded from Delphi by Jeff Shulman ]
  3673.  
  3674. Name: PAINT VIEWER DA
  3675. Date: 14-FEB-1988 01:05 by PAGE1
  3676.  
  3677. [ Updated 14-FEB-1988 01:05 by PAGE1. This is version 2.0 of the Paint DA.
  3678. A small bug in the selection rectangle has been fixed.  Also this version
  3679. will only display the copyright and shareware notice once when you run the
  3680. DA. ]
  3681.  
  3682. This is a picture viewer DA that views a MacPaint/FullPaint document on the
  3683. full screen.  It is compatable with 512s, Pluses, and SEs. Also works under
  3684. DA FKEY and suitcase.  Features include:  Zoom in/out, scroll copy to
  3685. clipboard, and startupscreen production.  Shareware.
  3686.  
  3687. [archived as
  3688.  
  3689. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>DA-PAINT-VIEWER-20.HQX
  3690.  
  3691. This version replaces the previous version.
  3692.  
  3693. - Lance ]
  3694.  
  3695. ------------------------------
  3696.  
  3697. Date: Thu 18 Feb 88 15:43:54-PST
  3698. From: Bill Lipa <P.PRIAPUS@OTHELLO.STANFORD.EDU>
  3699. Subject: TN123 plus many others
  3700.  
  3701. The following are tech notes from July 1987.
  3702.  
  3703. Bill
  3704.  
  3705. [archived as
  3706.  
  3707. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>TN096.HQX
  3708. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>TN120.HQX
  3709. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>TN123.HQX
  3710. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>TN126.HQX
  3711. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>TN131.HQX
  3712. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>TN132.HQX
  3713. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>TN133.HQX
  3714. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>TN134.HQX
  3715. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>TN135.HQX
  3716. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>TN136.HQX
  3717. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>TN137.HQX
  3718. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>TN138.HQX
  3719. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>TN139.HQX
  3720. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>TN140.HQX
  3721. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>TN141.HQX
  3722. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>TN142.HQX
  3723. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>TN143.HQX
  3724. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>TN144.HQX
  3725. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>TN145.HQX
  3726. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>TN146.HQX
  3727. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>TN147.HQX
  3728. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>TN148.HQX
  3729. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>TN149.HQX
  3730. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>TN150.HQX
  3731. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>TN151.HQX
  3732. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>TN152.HQX
  3733. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>TN153.HQX
  3734. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>TN154.HQX
  3735.  
  3736. Technotes 96, 120, 123, and 126 supersede previous versions.
  3737.  
  3738. - Lance ]
  3739.  
  3740. ------------------------------
  3741.  
  3742. Date: Fri 19 Feb 88 10:49:02-GMT
  3743. From: Jeff Shulman <SHULMAN@SDR>
  3744. Subject: FarceFilm 52
  3745.  
  3746. [ Uploaded from Delphi by Jeff Shulman ]
  3747.  
  3748. Name: FARCEFILM 52.FILM
  3749. Date: 18-FEB-1988 21:21 by ARTSFARCES
  3750.  
  3751. It's in MicroFilm format and as such requires MicroFilm Reader V1.0 or
  3752. later for use. This week's topic is "The Bureaucratization of Macintosh."
  3753.  
  3754. [archived as
  3755.  
  3756. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>ARTS-FARCES-FILM-52.HQX
  3757.  
  3758. - Lance ]
  3759.  
  3760. ------------------------------
  3761.  
  3762. Date: Thu, 18 Feb 88 15:37:08-2300
  3763. From: mcvax!iddth!jn@uunet.UU.NET (Jakob Nielsen)
  3764. Subject: HyperCard report on HyperTEXT workshop (in 4 parts)
  3765.  
  3766. Enclosed is a HyperCard stack which is a hypertext trip report from the
  3767. HyperTEXTU87 workshop in Chapel Hill, NC in November 1987. It has been run
  3768. through Stuffit and BinHex 4.  Unfortunately the file is too large to send
  3769. all at once, so it has been split up into four parts which must be
  3770. concatenated together before converting back using BinHex 4.
  3771.  
  3772. [archived as
  3773.  
  3774. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>HYPERCARD-HYPERTEXT-WORKSHOP-PART1.HQX
  3775. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>HYPERCARD-HYPERTEXT-WORKSHOP-PART2.HQX
  3776. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>HYPERCARD-HYPERTEXT-WORKSHOP-PART3.HQX
  3777. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>HYPERCARD-HYPERTEXT-WORKSHOP-PART4.HQX
  3778.  
  3779. - Lance ]
  3780.  
  3781. ------------------------------
  3782.  
  3783. Date: Mon, 15 Feb 88 16:33:14 PST
  3784. From: coherent!dplatt@ames.arc.nasa.gov (Dave Platt)
  3785. Subject: Collected bug reports (& patches) for CAP
  3786.  
  3787. This posting contains bug reports #0001 thru #0015 for the Columbia
  3788. University AppleTalk Package (CAP).  The patches in these reports should be
  3789. applied against the prerelease distribution #4 sources available on SUMEX,
  3790. *after* the PATCH5, PATCH6, and PATCH7 patches and source-file replacements
  3791. have been performed.
  3792.  
  3793. If you're using CAP, and _especially_ if you're using the papif
  3794. line-printer daemon "filter", you should definitely install these patches.
  3795.  
  3796.  
  3797. Dave Platt
  3798.   UUCP:    ...!{ames,sun,uunet}!coherent!dplatt     Domain: dplatt@coherent.com
  3799.       Internet: coherent!dplatt@ames.arpa, ...@sun.com, ...@uunet.uu.net
  3800.  
  3801. [archived as
  3802.  
  3803. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>AT-CAP4-BUGS-AND-PATCHES.SHAR
  3804.  
  3805. - Lance ]
  3806.  
  3807. ------------------------------
  3808.  
  3809. Date: Wed, 17 Feb 88 10:40:23 est
  3810. From: Oliver Steele <steele@cs.unc.edu>
  3811. Subject: Round window for Earth Idle
  3812.  
  3813. Here are some resources to paste (with ResEdit) into the recently
  3814. posted Earth Idle program to give it a round window.
  3815.  
  3816. Oliver Steele                       ...!uunet!mcnc!unc!steele
  3817.                                steele@cs.unc.edu
  3818.  
  3819. [archived as
  3820.  
  3821. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>EARTH-IDLE-ROUND-WINDOW-RESOURCE.HQX
  3822.  
  3823. - Lance ]
  3824.  
  3825. ------------------------------
  3826.  
  3827. Date: Sun, 21 Feb 88 15:40:21 gmt
  3828. From: Ralph Martin
  3829. From: <ralph%VAX1.COMPUTING-MATHS.CARDIFF.AC.UK@forsythe.stanford.edu>
  3830. Subject: Password Utility
  3831.  
  3832. Here is a small shareware program (and documentation) which stops random
  3833. people from booting up your Mac from its Hard Disk - at startup, a password
  3834. is requested and checked. If its not correct, the Mac just shuts down
  3835. again. This software is multifinder compatible.
  3836.  
  3837. Hope its useful! Ralph.
  3838.  
  3839. [archived as
  3840.  
  3841. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>UTILITY-HARDDISK-PASSWORD.HQX
  3842.  
  3843. - Lance ]
  3844.  
  3845. ------------------------------
  3846.  
  3847. Date: Mon 22 Feb 88 09:55:10-GMT
  3848. From: Jeff Shulman <SHULMAN@SDR>
  3849. Subject: Proper Icons
  3850.  
  3851. [ Uploaded from Delphi by Jeff Shulman ]
  3852.  
  3853. Name: PROPER ICONS
  3854. Date: 20-FEB-1988 11:38 by ACOTE
  3855.  
  3856. These two icons of my own design are, which I feel Proper Icons for the
  3857. Trash can, and one for those of you who own Suitcase(tm). The suitcases
  3858. developed by Apple set a standard, and I believe that this new suitcase
  3859. icon follows this standard for the Suitcase INIT. use ResEdit to install
  3860. into the SuitCase(tm) INIT. The Trashcan ICN# must be install by ResEdit
  3861. into the Finder, remove the trashcan and then renumber the new one to
  3862. ID#130. This may not follow Apples standard, but IS in fact TRASH.  The
  3863. Suitcase Icon will also appear on bootup, I think you'll really like it.
  3864. Hey, Software Supply... Follow the Mac interface, after all these years.
  3865. Other than the Icon (cosmetic) buy Suitcase(tm), you will never waste time
  3866. looking for that DA that removed LF's... Whats it's name.
  3867.  
  3868. [archived as
  3869.  
  3870. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>PROPER-ICONS.HQX
  3871.  
  3872. - Lance ]
  3873.  
  3874. ------------------------------
  3875.  
  3876. Date: 22 Feb 88   12:19 CST
  3877. From: B29165%ANLVM.BITNET@forsythe.stanford.edu
  3878. Subject: [TEAC tape editor]
  3879.  
  3880. This program should be used with extreme caution as you could easily
  3881. destroy the contents of any device on the SCSI bus!
  3882.  
  3883. This program is an editor for the TEAC MT-2ST/20S Streaming Cassette
  3884. Magnetic Tape Unit. It allows you to exercise all of the commands
  3885. implemented on this unit.  It was written as an investigative tool for an
  3886. attempt to write a backup utility (forthcoming) that will use this device.
  3887. This program will probably be of no use to you if you don't have the TEAC
  3888. manuals to refer to. As it is my first effort in the Mac arena it probably
  3889. has many faults, after all it is intended to be only a tool.  Please feel
  3890. free if you would like to send comments but I have no intention of
  3891. supporting this.
  3892.  
  3893. The TEAC MTU that I have came from 1st Class Peripherals in their B-Sider
  3894. unit that I bought for an Apple //e system. When I discovered that the
  3895. interface was SCSI it seemed like fate that I should cable this hummer up
  3896. to my Mac so I can use it to back up my hard disk. Of course there was no
  3897. utility available and yet another project was born...
  3898.  
  3899. There are two added menus. The first is called "Commands" and has all of
  3900. the raw commands plus one that is called "Write RAM" which writes a
  3901. megabyte of memory starting at address 000000. This is all of the RAM on a
  3902. standard Mac+. The other menu is called "Target" and allows you to specify
  3903. the tape unit's SCSI bus address via the "Set Target" item. This is the
  3904. same dialog that comes up when the program is initially run. The other item
  3905. does an SCSI bus reset. The program also does this reset upon exit just to
  3906. be sure it has cleaned up after itself (and you).
  3907.  
  3908. I hope this proves to be useful to someone out there.
  3909.  
  3910. Steven J. Schaeffer
  3911. 310 E. 17th St
  3912. Idaho Falls, ID  83404
  3913.  
  3914. Bitnet: B29165@ANLVM
  3915. GENIE: NYBBLESNBITS
  3916. DELPHI:NYBBLESNBITS
  3917.  
  3918. [archived as
  3919.  
  3920. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>TEAC-MT2ST-TAPE-EDITOR.HQX
  3921.  
  3922. - Lance ]
  3923.  
  3924. ------------------------------
  3925.  
  3926. End of INFO-MAC Digest
  3927. **********************
  3928. 22-Mar-88 22:42:28-PST,27015;000000000000
  3929. Mail-From: INFO-MAC-REQUEST created at 22-Mar-88 22:07:42
  3930. Date: 22 Mar 88 2207-PST
  3931. From: Moderators Jon Pugh, Dwayne Virnau, Lance Nakata
  3932. Reply-to: INFO-MAC@SUMEX-AIM.Stanford.EDU
  3933. Subject: INFO-MAC Digest   V6 #31
  3934. To: INFO-MAC@SUMEX-AIM.Stanford.EDU
  3935.  
  3936.  
  3937. INFO-MAC Digest         Wednesday, 23 Mar 1988     Volume 6 : Issue 31
  3938.  
  3939. Today's Topics:
  3940.           Unsit - program for separating Stuffit files on Unix
  3941.                Fixed Lightspeed Pascal Standard Libraries
  3942.             Re: Remote LocalTalk (posting of Async AppleTalk)
  3943.                               Brickles 8.0
  3944.                               StdFile FKEY
  3945.                     Colorized cursor for Mac II users
  3946.                              Front & Center
  3947.                             AppleDraw DA V3.3
  3948.                       Genealogy stack (in 4 parts)
  3949.                              System Error DA
  3950.          Here's UW Version 4.2, in UNIX shar format (in 8 parts)
  3951.                    1987 1040A Tax Stack (in 10 parts)
  3952.                          StdFile stdio for LS C
  3953.                     GetClipboard / PutClipboard XCMDs
  3954.                          Dragon 2.1 (in 3 parts)
  3955.                         GIF pictures and program
  3956.                                  Vaccine
  3957.                               FarceFilm 53
  3958.                               FarceFilm 54
  3959.                         Usenet Mac Digest V4 #31
  3960.                         Usenet Mac Digest V4 #32
  3961.                         Usenet Mac Digest V4 #33
  3962.  
  3963.  
  3964. ----------------------------------------------------------------------
  3965.  
  3966. Date: Tue 23 Feb 88 19:52:53-PST
  3967. From: Allan G. Weber <WEBER%BRAND.usc.edu@oberon.USC.EDU>
  3968. Subject: Unsit - program for separating Stuffit files on Unix
  3969.  
  3970. Some time ago I distributed a Unix program called "unpit" that would
  3971. unpack the data fork of a Packit file into the component files to
  3972. allow selective downloading.  Packit has since been replaced by
  3973. Stuffit as the file archiver of choice for most recent postings.  I've
  3974. included below a shar file containing the sources for "unsit", a
  3975. program that does the same thing to a Stuffit archive file.  It will
  3976. separate the components of the ".sit" file into the individual files
  3977. and leave them on the Unix system in the proper form for downloading
  3978. with "macput".
  3979.  
  3980. At first glance, this may sound like a relatively useless program
  3981. since you can always download the ".sit" file and break it up on the
  3982. Mac.  However, I've found it to be a big help when dealing with the
  3983. Mac postings.  Also, if you have ever had to upload a large number of
  3984. files from the Mac to Unix, this is the program for you.  Use Stuffit
  3985. to put all the files in a single archive, upload it, and then
  3986. break it apart with "unsit".
  3987.  
  3988. The primary method of compression for Stuffit is the same as that used
  3989. by the Unix program "compress".  Unsit will only work if the compress
  3990. program is on the system since it uncompresses the file by opening a
  3991. pipe to the program and passing the data through compress and into the
  3992. output file.  If you don't have "compress" on your system, it can be
  3993. obtained from the comp.unix.sources archives.
  3994.  
  3995.                 Allan Weber
  3996.                 USC Signal and Image Processing Institute
  3997.                 Arpa: weber%brand.usc.edu@oberon.usc.edu
  3998.                 uucp: ...sdcrdcf!usc-oberon!brand!weber
  3999.  
  4000. [archived as
  4001.  
  4002. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>UTILITY-UNSIT.SHAR
  4003.  
  4004. - Lance ]
  4005.  
  4006. ------------------------------
  4007.  
  4008. Date: Thu, 25 Feb 88 15:13:50 -0500 (EST)
  4009. From: Richard Siegel <rs4u+@andrew.cmu.edu>
  4010. Subject: Fixed Lightspeed Pascal Standard Libraries
  4011.  
  4012. The attached BinHex file is a new copy of the "MacPasLib" standard
  4013. libraries for Lightspeed Pascal. This version of the library fixes
  4014. the bug that prevented the Enter key from being used for signalling
  4015. EOF from the keyboard. It has been tested and works on all Mac
  4016. keyboards.
  4017.  
  4018.         --Rich
  4019.  
  4020. ===================================================================
  4021. Richard Siegel
  4022. THINK Technologies, QA Technician (on leave)
  4023.  
  4024. I'm not physically at THINK, so my information may be out
  4025. of date. Be forewarned.
  4026.  
  4027. Arpa: rich.siegel@andrew.cmu.edu
  4028. UUCP: {decvax,ucbvax,sun}!andrew.cmu.edu!rich.siegel
  4029. ==================================================================
  4030.  
  4031. [archived as
  4032.  
  4033. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>LIGHTSPEED-PASCAL-MACPASLIB-UPGRADE.HQX
  4034.  
  4035. - Lance ]
  4036.  
  4037. ------------------------------
  4038.  
  4039. Date: Fri, 26 Feb 88 02:11 N
  4040. From: Thomas Fruin <FRUIN%HLERUL5.BITNET@forsythe.stanford.edu>
  4041. Subject: Re: Remote LocalTalk (posting of Async AppleTalk)
  4042.  
  4043.  > From: JA1W@TE.CC.CMU.EDU
  4044.  > Subject: Remote LocalTalk
  4045.  
  4046.  > Is anyone aware of a utility that allows a user to use AppleTalk
  4047.  > over the phone lines? For games like Maze Wars+ and NetTrek that
  4048.  > would be a great boon.
  4049.  >
  4050.  >      Thanks,
  4051.  >      Jesse Adelman
  4052.  
  4053. Jesse,
  4054.  
  4055. Maze Wars+  already  works  over phone lines ( check the dialogs and
  4056. menus again ),  but for the other programs:  yes, there is precisely
  4057. such a utility.  It's  called  Async AppleTalk,  and is a version of
  4058. the Link Access Protocol  in  the  AppleTalk drivers that works over
  4059. RS-232  lines.  It was  written by  Rich Brown  at Dartmouth College
  4060. and is free.
  4061.  
  4062. You have to realize, though, that many AppleTalk  applications don't
  4063. expect  to run  over slow phone lines.  There is a  special  utility
  4064. that  patches  Tops to work over 1200 bps  lines,  but NetTrek,  for
  4065. example, won't work well below  9600  bps.  However, it's an exiting
  4066. concept, so you might still want to experiment with it.
  4067.  
  4068. The file I'm posting includes Async AppleTalk ( a combination driver
  4069. and  desk  accessory ), Async Peek ( a utility  to help debug  Async
  4070. AppleTalk connections), and the Tops Compatibility Init that patches
  4071. Tops for the low speed.  And documentation of course.
  4072.  
  4073. -- Thomas Fruin
  4074.  
  4075.    fruin@hlerul5.BITNET                 Leiden University
  4076.    thomas@uvabick.UUCP                  University of Amsterdam
  4077.    hol0057.AppleLink
  4078.    2:500/15.FidoNet                     The Netherlands
  4079.  
  4080. [archived as
  4081.  
  4082. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>DA-ASYNC-APPLETALK.HQX
  4083.  
  4084. - Lance ]
  4085.  
  4086. ------------------------------
  4087.  
  4088. Date: Fri 26 Feb 88 09:31:03-GMT
  4089. From: Jeff Shulman <SHULMAN@SDR>
  4090. Subject: Brickles 8.0
  4091.  
  4092. [ Uploaded from Delphi by Jeff Shulman ]
  4093.  
  4094. Name: BRICKLES 8.0
  4095. Date: 25-FEB-1988 18:24 by KENWINOGRAD
  4096.  
  4097. Brickles (v8) is a completely rewritten and revised breakout game.
  4098. Brickles is now in color (if you have a Mac2) but useable on all Macs. (see
  4099. the FORMATS option in the Edit Menu).  Brickles also now supports any size
  4100. screen.  The Brickles window is re-sizeable (just drag the "invisible"
  4101. sizebox).  The bricks themselves are also automatically resizeable.  As in
  4102. past versions, you can customize the ball speed, paddle size, ball size,
  4103. etc Many other features have been added.  Check it out.  Thanks for your
  4104. support.
  4105.  
  4106. [archived as
  4107.  
  4108. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>GAME-BRICKLES-80.HQX
  4109.  
  4110. This version replaces version 7.0.
  4111.  
  4112. - Lance ]
  4113.  
  4114. ------------------------------
  4115.  
  4116. Date: Fri 26 Feb 88 09:32:21-GMT
  4117. From: Jeff Shulman <SHULMAN@SDR>
  4118. Subject: StdFile FKEY
  4119.  
  4120. [ Uploaded from Delphi by Jeff Shulman ]
  4121.  
  4122. Name: STDFILE FKEY 1.1
  4123. Date: 25-FEB-1988 02:15 by DEWI
  4124.  
  4125. This FKEY pops up a small dialog box that allows you to type in a pathname.
  4126. The Standard File package is then set to this folder, so that Open/Save
  4127. dialog boxes will open on that folder. It's meant to be used with QuicKeys
  4128. to make sequences position-independent.
  4129.  
  4130. [archived as
  4131.  
  4132. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>FKEY-STDFILE-11.HQX
  4133.  
  4134. - Lance ]
  4135.  
  4136. ------------------------------
  4137.  
  4138. Date: Fri, 26 Feb 88 10:54:33 PST
  4139. From: dplatt@coherent.com (Dave Platt)
  4140. Subject: Colorized cursor for Mac II users
  4141.  
  4142. Enclosed is Color Cursor, an INIT written by Matthias Urlichs.  When
  4143. placed in the System folder on a Mac II, it will colorize the standard
  4144. arrowhead cursor... the effect is somewhat like taking a chunk out of
  4145. a rainbow.  I like it, and have had no problems with the INIT itself.
  4146.  
  4147. The INIT-file I downloaded from my local EchoMac BBS had some minor
  4148. problems with the bundle, and thus the file's icon didn't show up
  4149. under Finder.  I repaired the bundle with ResEdit, and also added the
  4150. ShowInit resource;  the icon is now visible under the Finder and
  4151. also appears on the screen during system startup.
  4152.  
  4153. Dave Platt
  4154.   UUCP: ...!{ames,sun,uunet}!coherent!dplatt     DOMAIN: dplatt@coherent.com
  4155.     INTERNET: coherent!dplatt@ames.arpa, ...@sun.com, ...@uunet.uu.net
  4156.  
  4157. [archived as
  4158.  
  4159. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>INIT-COLOR-CURSOR.HQX
  4160.  
  4161. - Lance ]
  4162.  
  4163. ------------------------------
  4164.  
  4165. Date:       Fri, 26 Feb 88 15:24:26 PST
  4166. From: PUGH@NMFECC.ARPA
  4167. Subject: Front & Center
  4168.  
  4169. Here is Front & Center, a cdev that centers your dialog boxes
  4170. around your cursor.  Ideal for big screens.  It would be good
  4171. for multiple monitors too, but it won't move dialog boxes onto
  4172. other screens.  If anyone with CashWe$erve access could contact
  4173. the author about this, I would appreciate it.
  4174.  
  4175. Jon
  4176.  
  4177. [archived as
  4178.  
  4179. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>CDEV-FRONT-AND-CENTER.HQX
  4180.  
  4181. - Lance ]
  4182.  
  4183. ------------------------------
  4184.  
  4185. Date: Mon, 29 Feb 88 10:04:46 SET
  4186. From: Guenther Blaschek <K331671%AEARN.BITNET@forsythe.stanford.edu>
  4187. Subject: AppleDraw DA V3.3
  4188.  
  4189. This is AppleDraw V3.3 - a DA for object-oriented drawing that features:
  4190.  - rectangles, ovals, rounded rects, lines, arrows, text
  4191.  - line widths from 1 to 12 & HAIRLINES (for the LaserWriter)
  4192.  - various fill and pen patterns
  4193.  - framed text
  4194.  - grid
  4195.  - alignment of objects
  4196.  - (nearly) infinite drawing area
  4197.  - partial pictures (i.e. copies of rectangular parts of other objects)
  4198.  - picture files (may be used as libraries for frequently used elements)
  4199.  - etc.
  4200.  
  4201. AppleDraw is ShareWare (US$ 30.-). 5.5 pages MacWrite documentation
  4202. included.  Problems, Suggestions, Critics, ...: contact me via INFO-MAC,
  4203. MAC-USER or directly at <K331671@AEARN>.
  4204.  
  4205. The following file must be decoded with Binhex 4.0 / PackIt III.
  4206. Enjoy it
  4207. [archived as
  4208.  
  4209. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>DA-APPLEDRAW-33.HQX
  4210.  
  4211. This DA replaces DA-OBJECT-ORIENTED-DRAW.HQX.
  4212.  
  4213. - Lance ]
  4214.  
  4215. ------------------------------
  4216.  
  4217. Date: Tue, 1 Mar 88 00:04:43 EST
  4218. From: Nicholas.Spies@CAT.CMU.EDU
  4219. Subject: Genealogy stack (in 4 parts)
  4220.  
  4221. This is a HyperCard stack for creating and maintaining a genealogical database.
  4222.  
  4223. Features:
  4224.     - Information for each person is one one card, including:
  4225.         -Father, mother, self, siblings, up to 4 spouses and issue
  4226.         -Fields for notes, sources, private (unchanging) info
  4227.     - Most names need be typed only once; use buttons to create cards
  4228.     - Click on any person to get to their card
  4229.     - Make lists of:
  4230.         - All appearances of a name in the stack
  4231.         - All exact matches of a name
  4232.         - Ancestors to a specified generation
  4233.         - Offspring to a specified generation
  4234.         - First cousins of any person
  4235.         - Any direct line of ancestory specified by Mother/Father key
  4236.     - Click on any person in created list to go to their card...
  4237.  
  4238. This stack is offered as $10 shareware; the stack is not locked and has
  4239. extensive help notes.
  4240.  
  4241. Nicholas Spies
  4242. Center for Design of Educational Computing
  4243. Carnegie Mellon University
  4244. Pittsburgh, PA 15213
  4245. (412) 268-7641
  4246.  
  4247. [archived as
  4248.  
  4249. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>HYPERCARD-GENEALOGY-PART1.HQX
  4250. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>HYPERCARD-GENEALOGY-PART2.HQX
  4251. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>HYPERCARD-GENEALOGY-PART3.HQX
  4252. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>HYPERCARD-GENEALOGY-PART4.HQX
  4253.  
  4254. - Lance ]
  4255.  
  4256. ------------------------------
  4257.  
  4258. Date: Tue 1 Mar 88 09:19:32-GMT
  4259. From: Jeff Shulman <SHULMAN@SDR>
  4260. Subject: System Error DA
  4261.  
  4262. [ Uploaded from Delphi by Jeff Shulman ]
  4263.  
  4264. Name: SYSTEM ERRORS DA
  4265. Date: 29-FEB-1988 09:37 by BILLS
  4266.  
  4267. [ Updated 29-FEB-1988 09:37 by BILLS. Version 1.3 has a doc and
  4268. customization notes, a squarer window, keyboard support, and a more
  4269. flexable window customizing. ]
  4270.  
  4271. System Errors Table is a Desk Accessory that shows you a scrolling list of
  4272. all the Macintosh system errors. If you find any mistakes or have any
  4273. additions or suggestions, drop me a note. System Errors Table DA is free,
  4274. but copyright 1988 by Bill Steinberg. Stuffit required to decode.
  4275.  
  4276. Enjoy
  4277.  
  4278. BillS
  4279.  
  4280. [archived as
  4281.  
  4282. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>DA-SYSTEM-ERRORS-13.HQX
  4283.  
  4284. - Lance ]
  4285.  
  4286. ------------------------------
  4287.  
  4288. Date: Wed, 2 Mar 88 09:59:58 PST
  4289. From: rothberg@polya.stanford.edu (Edward Rothberg)
  4290. Subject: Here's UW Version 4.2, in UNIX shar format (in 8 parts)
  4291.  
  4292.                         UW Version 4.2
  4293.                         31 January 1988
  4294.  
  4295. This is version 4.2 of UW, a multiple-window interface to UNIX for
  4296. the Macintosh computer.  The distribution for UW consists of two
  4297. binary files for the Macintosh (in BinHex 4.0 format) and a number
  4298. of source files for the (BSD) UNIX server.
  4299.  
  4300. The distribution includes the following directories:
  4301.  
  4302.         h       - all UW include files
  4303.         server  - source code for the UW server
  4304.         lib     - source code for the UW programmer's library
  4305.         utility - source code for miscellaneous utility programs
  4306.         doc     - [nt]roff documentation (-ms and -man formats)
  4307.         hqx     - Macintosh binary files
  4308.         misc    - other things of possible interest
  4309.  
  4310. See the README file in the first shar file for more information.
  4311.  
  4312. [archived as
  4313.  
  4314. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>UNIX-UW-42-PART1.SHAR
  4315. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>UNIX-UW-42-PART2.SHAR
  4316. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>UNIX-UW-42-PART3.SHAR
  4317. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>UNIX-UW-42-PART4.SHAR
  4318. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>UNIX-UW-42-PART5.SHAR
  4319. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>UNIX-UW-42-PART6.SHAR
  4320. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>UNIX-UW-42-PART7.SHAR
  4321. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>UNIX-UW-42-PART8.SHAR
  4322.  
  4323. This version of UW replaces version 3.4 and 4.1.  It also is available to
  4324. ARPANET/MILNET sites via anonymous FTP from MORDOR.S1.GOV.  (Change to the
  4325. directory "uw" and retrieve "uw.shar.[1-8]".)  Each file is a complete shar
  4326. file; no joining is necessary.
  4327.  
  4328. - Lance ]
  4329.  
  4330. ------------------------------
  4331.  
  4332. Date: Thu, 17 Mar 88 20:10:44 CST
  4333. From: liberte@ncsa.uiuc.edu (Dan LaLiberte)
  4334. Subject: 1987 1040A Tax Stack (in 10 parts)
  4335.  
  4336. Here is a stack to help you prepare 1040A tax returns.  This is from the
  4337. same folks who created the 1040EZ stack.  1040A is $20 shareware.
  4338.  
  4339. [archived as
  4340.  
  4341. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>HYPERCARD-TAXFORM-1040A-PART1.HQX
  4342. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>HYPERCARD-TAXFORM-1040A-PART2.HQX
  4343. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>HYPERCARD-TAXFORM-1040A-PART3.HQX
  4344. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>HYPERCARD-TAXFORM-1040A-PART4.HQX
  4345. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>HYPERCARD-TAXFORM-1040A-PART5.HQX
  4346. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>HYPERCARD-TAXFORM-1040A-PART6.HQX
  4347. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>HYPERCARD-TAXFORM-1040A-PART7.HQX
  4348. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>HYPERCARD-TAXFORM-1040A-PART8.HQX
  4349. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>HYPERCARD-TAXFORM-1040A-PART9.HQX
  4350. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>HYPERCARD-TAXFORM-1040A-PART10.HQX
  4351.  
  4352. - Lance ]
  4353.  
  4354. ------------------------------
  4355.  
  4356. Date: 4 Mar 88 05:27:24 GMT
  4357. From: borton%net1@ucsd.edu (Chris Borton)
  4358. Subject: StdFile stdio for LS C
  4359.  
  4360. This is a little package I cooked up the other night to help me in writing
  4361. stdio programs for Unix with LS C.  I end up using stdin and stdout a lot,
  4362. and although redirecting these with LS C is possible, I find it is
  4363. cumbersome.  Sometimes this is easy to get around by just doing a
  4364.  
  4365. #ifdef Mac      /* I have a "#define Mac" in my stdio.h */
  4366. #define fgetc(stdin) getch()            /* this also handles getc()     */
  4367. #define fputc(c,stdout) putch()         /* ...and putc..                */
  4368. #endif
  4369.  
  4370. but other times I wanted to always use the same input file.  So I decided
  4371. to do it using SFGetFile and SFPutFile.  This StuffIt'd BinHex includes the
  4372. LS C project, sf_stdio.c, and sf_stdio.h.  The two functions for this are
  4373. sf_stdin() it using SFGetFile and SFPutFile.  This StuffIt'd BinHex
  4374. includes the LS C project, sf_stdio.c, and sf_stdio.h.  The two functions
  4375. for this are sf_stdin() and sf_stdout(), both of which prompt for a TEXT
  4376. file to use as stdin or stdout.  sf_stdio.c also includes the routines
  4377. GetFile() and PutFile(), which are good examples of how to use StdFile.
  4378. These are based upon routines supplied in the LS C examples; obviously
  4379. portions of this are (c) THINK Technologies.  The rest is (c) Chris Borton,
  4380. but is distributed with the intent of information-sharing and helping
  4381. other people.  Enjoy!!!
  4382.  
  4383. Chris "Johann" Borton, UC San Diego    ...!sdcsvax!borton
  4384.                     borton@ucsd.edu or BORTON@UCSD.BITNET
  4385. Letztes Jahr in Deutschland, nog een jaar hier, en dan naar Amsterdam!
  4386. "H = F cubed.  Happiness = Food, Fun, & Friends."  --Steve Wozniak
  4387.  
  4388. [archived as
  4389.  
  4390. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>LIGHTSPEEDC-STDFILE-STDIO.HQX
  4391.  
  4392. - Lance ]
  4393.  
  4394. ------------------------------
  4395.  
  4396. Date:       Sat, 5 Mar 88 18:32:34 PST
  4397. From: PUGH@NMFECC.ARPA
  4398. Subject: GetClipboard / PutClipboard XCMDs
  4399.  
  4400. Here are an XCMD and an XFCN that will read and write to the clipboard from
  4401. HyperTalk.  They are simple and easy to use and save you from having to place
  4402. text into a field before copying it with that "click at with shiftkey" stuff.
  4403.  
  4404. These were written by yours truly and are released for your use.
  4405.  
  4406. By the way, I managed to avoid the MultiFinder Clipboard problem.  Whenever
  4407. you call PutScrap, simply call SystemEdit(3) to make MultiFinder change
  4408. everyone's clipboard.  It makes MF think that someone pulled down the Copy
  4409. menu item.
  4410.  
  4411. Jon
  4412.  
  4413.          N         L                          pugh@nmfecc.arpa
  4414.           M    A    L          National Magnetic Fusion Energy Computer Center
  4415.            F    T    N             Lawrence Livermore National Laboratory
  4416.             E         L                       PO Box 5509 L-561
  4417.              C                           Livermore, California 94550
  4418.               C                                (415) 423-4239
  4419.  
  4420. [archived as
  4421.  
  4422. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>HYPERCARD-XCMD-XFCN-GET-PUT-CLIPBOARD.HQX
  4423.  
  4424. - Lance ]
  4425.  
  4426. ------------------------------
  4427.  
  4428. Date: Mon, 7 Mar 88 01:55:08 CST
  4429. From: liberte@ncsa.uiuc.edu (Dan LaLiberte)
  4430. Subject: Dragon 2.1 (in 3 parts)
  4431.  
  4432. The following is an edited note from Kaihu Chen about Dragon 2.1, the
  4433. second place winner in the 19x19 category of the 1987 International
  4434. Computer Wei-Chi (Chinese for Go).
  4435.  
  4436. Dan LaLiberte
  4437. liberte@a.cs.uiuc.edu
  4438. uiucdcs!liberte
  4439. ================================================================
  4440.  
  4441. My apology to all who have sent me requests for the long wait.  In light of
  4442. the ~60 requests that I have received, I think there is no better means of
  4443. distribution than posting it to the net.
  4444.  
  4445. It has been observed that the program has unimplemented features
  4446. (non-functioning menu entries), and crashes occaionally.
  4447.  
  4448. Dragon 2.1 is not shareware; it is public domain, with the only limitation
  4449. that it may not be used for commercial purposes.  You may freely distribute
  4450. it to any interested party.
  4451.  
  4452. If you are interested in getting the source, you may try contacting the
  4453. original author:
  4454.  
  4455.     Liu, Don-yuei
  4456.     Department of Computer Science and Information Engineering
  4457.       National Taiwan University
  4458.     Taipei, Taiwan, Republic of China
  4459.  
  4460. Mark Goldfain (goldfain@osiris.cso.uiuc.edu) has volunteered to handle
  4461. requests the program on a disk if you cannot get it from the net.  You will
  4462. need to send him a blank diskette and a self-addressed stamped envelope.
  4463.  
  4464. As far as I know, the program is not officially rated.  Since I believe
  4465. Dragon 2.1 is in the same ballpark as Nemesis, and Nemesis was claimed to
  4466. be 17 kyu (or was it 15 kyu?), I guess it's safe to say that it is also
  4467. somewhere around 17 kyu.
  4468.  
  4469. Kaihu Chen
  4470. chen@uiucdcs.cs.uiuc.edu
  4471. ======================================
  4472. Dragon is a binhexed stuffit file in three parts.
  4473.  
  4474. [archived as
  4475.  
  4476. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>GAME-DRAGON-21-PART1.HQX
  4477. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>GAME-DRAGON-21-PART2.HQX
  4478. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>GAME-DRAGON-21-PART3.HQX
  4479.  
  4480. - Lance ]
  4481.  
  4482. ------------------------------
  4483.  
  4484. Date: Sun, 21 Feb 88 21:16:01 PST
  4485. From: <INFO-MAC-REQUEST@SUMEX-AIM.Stanford.EDU>
  4486. Subject: GIF pictures and program
  4487.  
  4488. Here are some color pictures and the GIFFER 1.0 program to display them.
  4489. These are for the MacII only.
  4490.  
  4491. These images are all 320 by 200 in 256 colors.  They may look funny unless
  4492. you have expanded your video card to be able to display at least 256
  4493. colors. They were originally digitized on a Commodore Amiga using a
  4494. digitizer called DigiView.  Each original digitized image was 640 by 400 in
  4495. 21-bit color (2 million colors) and took 768K of file space.  The 768K
  4496. files were transmitted from the Amiga to a Mac-II where a special purpose
  4497. program converted them to a 256 color "quantized DigiView file".  The
  4498. resulting quantized digiview files were then read in by the Giffer program,
  4499. and shrunk to one fourth their original size for convenience, and converted
  4500. to GIF files.  GIF is a graphics standard being promoted by Compuserve, and
  4501. display programs are available for a wide variety of machines.
  4502.  
  4503. [archived as
  4504.  
  4505. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>GIF-ANULKA.HQX
  4506. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>GIF-CARMEN_BERG.HQX
  4507. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>GIF-CAROL.HQX
  4508. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>GIF-DANIELLE.HQX
  4509. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>GIF-DEBRA_JO_FONDREN.HQX
  4510. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>GIF-DENISE_MCCONNELL.HQX
  4511. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>GIF-KRISTINE.HQX
  4512. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>GIF-KYMBERLY_PAIGE.HQX
  4513. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>GIF-LISA_WELCH.HQX
  4514. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>GIF-MIKE.HQX
  4515. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>GIF-MIKKI.HQX
  4516. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>GIF-SONDRA.HQX
  4517. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>GIF-PICTURETOOLS.HQX
  4518. ]
  4519.  
  4520. ------------------------------
  4521.  
  4522. Date: Mon 21 Mar 88 10:21:33-GMT
  4523. From: Jeff Shulman <SHULMAN@SDR>
  4524. Subject: Vaccine
  4525.  
  4526. [ Uploaded from Delphi by Jeff Shulman ]
  4527.  
  4528. Name: VACCINE
  4529. Date: 21-MAR-1988 01:11 by WDAVIS
  4530.  
  4531. This is Vaccine, a control panel device (cdev) to provide some protection
  4532. against viruses.  Put this in your system folder and reboot.  Instructions
  4533. included. Copyright 1988 CE Software, provided free as a service for our
  4534. customers.
  4535.  
  4536. Uploaded by Bill Davis / CE Software Customer Support
  4537.  
  4538. Written by Donald Brown / CE Software Programming Director
  4539.  
  4540. [archived as
  4541.  
  4542. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>CDEV-VACCINE.HQX
  4543.  
  4544. - Lance ]
  4545.  
  4546. ------------------------------
  4547.  
  4548. Date: Fri 26 Feb 88 09:31:48-GMT
  4549. From: Jeff Shulman <SHULMAN@SDR>
  4550. Subject: FarceFilm 53
  4551.  
  4552. [ Uploaded from Delphi by Jeff Shulman ]
  4553.  
  4554. Name: FARCEFILM 53.FILM
  4555. Date: 25-FEB-1988 20:24 by ARTSFARCES
  4556.  
  4557. This is FarceFilm 53 for the week of 26 February 1988.  It's in MicroFilm
  4558. format and as such requires MicroFilm Reader V1.0 or later for use. This
  4559. week's topic is "Of HyperCartels, HyperCabals, and HyperBabble."
  4560.  
  4561. [archived as
  4562.  
  4563. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>ARTS-FARCES-FILM-53.HQX
  4564.  
  4565. - Lance ]
  4566.  
  4567. ------------------------------
  4568.  
  4569. Date: Fri 4 Mar 88 08:46:21-GMT
  4570. From: Jeff Shulman <SHULMAN@SDR>
  4571. Subject: FarceFilm 54
  4572.  
  4573. [ Uploaded from Delphi by Jeff Shulman ]
  4574.  
  4575. Name: FARCEFILM 54.FILM
  4576. Date: 3-MAR-1988 19:25 by ARTSFARCES
  4577.  
  4578. This is FarceFilm 54 for the week of 4 March 1988.  It's in MicroFilm
  4579. format and as such requires MicroFilm Reader V1.0 or later for use.  This
  4580. week's topic is "Synergetic HyperCard."
  4581.  
  4582. [archived as
  4583.  
  4584. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>ARTS-FARCES-FILM-54.HQX
  4585.  
  4586. - Lance ]
  4587.  
  4588. ------------------------------
  4589.  
  4590. Date: Mon 7 Mar 88 09:55:40-GMT
  4591. From: Jeff Shulman <SHULMAN@SDR>
  4592. Subject: Usenet Mac Digest V4 #31
  4593.  
  4594. Usenet Mac Digest     Saturday, March 5, 1988        Volume 4 : Issue 31
  4595.  
  4596. Today's Topics:
  4597.      Re: SAS/Graph on a Mac
  4598.      Re: A/UX disk I/O (real numbers)
  4599.      Re: How about Epsilon for the MAC?
  4600.      A/UX troff (was Re: A/UX disk I/O (real numbers))
  4601.      Re: A/UX disk I/O (real numbers)
  4602.      WriteNow->MS Word?
  4603.      Re: SoundCap (Formerly: Short review of MacRecorder, by Farallon)
  4604.      Re: WriteNow format needed
  4605.      A/UX window systems, Mac toolbox, etc
  4606.      Re: A/UX disk I/O (real numbers)
  4607.      A/UX comments
  4608.      Plotter file (multi-pen) output to LW or LQ printers?
  4609.      New MacPaint core dumps/freezes under A/UX
  4610.      Re: Software for the Mac -- recommendations wanted.
  4611.      Maybe I'm dumb but...
  4612.      Software for the Mac: spreadsheets
  4613.  
  4614. [archived as
  4615.  
  4616. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>USENETV4-31.ARC
  4617.  
  4618. - Lance ]
  4619.  
  4620. ------------------------------
  4621.  
  4622. Date: Mon 7 Mar 88 09:57:12-GMT
  4623. From: Jeff Shulman <SHULMAN@SDR>
  4624. Subject: Usenet Mac Digest V4 #32
  4625.  
  4626. Usenet Mac Digest     Saturday, March 5, 1988        Volume 4 : Issue 32
  4627.  
  4628. Today's Topics:
  4629.      Office Management for Plastic Surgery Solo Practice
  4630.      dqDrvSiz
  4631.      Re: Updating the Desktop
  4632.      How to calc. total RAM installed?
  4633.      VersaTerm-Pro bug.
  4634.      Mac+ hardware question: 2.5 Meg using 256k SIMMs only ?
  4635.      hardware question: source for carriers for 256k SIMMs ??
  4636.      C++ FOR MAC ANYONE? HOW ABOUT GNU C++?
  4637.      Looking for Scott's resource file...
  4638.      Re: Beginning Mac Programming
  4639.      Ehman 800k drive warning
  4640.      Re: Circular Windows
  4641.      Re: LSC: booleans != TRUE ??
  4642.      differences between Reflex+ and Filemaker+
  4643.      Packed Booleans=1 byte not 1 Bit Warning!
  4644.      Copy II Mac 7.1 problem
  4645.      Re: dqDrvSiz
  4646.      Re: differences between Reflex+ and Filemaker+
  4647.      New Question about the Serial Drivers
  4648.      NEON Caveat (was Re: Advice for starting programmers...)
  4649.      Re: Tool-Tool, "Prototyper"
  4650.      Re: NEON Caveat (was Re: Advice for starting programmers...)
  4651.  
  4652. [archived as
  4653.  
  4654. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>USENETV4-32.ARC
  4655.  
  4656. - Lance ]
  4657.  
  4658. ------------------------------
  4659.  
  4660. Date: Mon 7 Mar 88 09:59:10-GMT
  4661. From: Jeff Shulman <SHULMAN@SDR>
  4662. Subject: Usenet Mac Digest V4 #33
  4663.  
  4664. Usenet Mac Digest     Saturday, March 5, 1988        Volume 4 : Issue 33
  4665.  
  4666. Today's Topics:
  4667.      Device driver status call with csCode == 1
  4668.      AUX SCSI driver question
  4669.      Accelerator/math coprocessor for Mac Plus
  4670.      Two Questions on programming 4D
  4671.      Re: Using a mac in a 220V/50Hz environment
  4672.      Has anyone done this?
  4673.      QuickerGraf 1.0 Performance Figures
  4674.      System/Finder patch available?? (2 messages)
  4675.      Re: Tandy Mac Clone?
  4676.      A/UX vs 4th Dimension
  4677.      Another book for beginners
  4678.      Mac II memory speed
  4679.      Re: some practical AppleShare questions
  4680.      Re: New Question about the Serial Drivers
  4681.      Datadesk Keyboard Info Wanted
  4682.      Re: Mac II ROM update
  4683.      MacInTax warning
  4684.      Re: Datadesk Keyboard Info Wanted
  4685.      Vertical Retrace
  4686.      dragging icons
  4687.  
  4688. [archived as
  4689.  
  4690. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>USENETV4-33.ARC
  4691.  
  4692. - Lance ]
  4693.  
  4694. ------------------------------
  4695.  
  4696. End of INFO-MAC Digest
  4697. **********************
  4698. 22-Mar-88 22:58:31-PST,20468;000000000000
  4699. Mail-From: INFO-MAC-REQUEST created at 22-Mar-88 22:15:43
  4700. Date: 22 Mar 88 2215-PST
  4701. From: Moderators Jon Pugh, Dwayne Virnau, Lance Nakata
  4702. Reply-to: INFO-MAC@SUMEX-AIM.Stanford.EDU
  4703. Subject: INFO-MAC Digest   V6 #32
  4704. To: INFO-MAC@SUMEX-AIM.Stanford.EDU
  4705.  
  4706.  
  4707. INFO-MAC Digest         Wednesday, 23 Mar 1988     Volume 6 : Issue 32
  4708.  
  4709. Today's Topics:
  4710.                 MacMag virus infects commercial software
  4711.                          Hard disk write protect
  4712.                              Resource Editor
  4713.                      MPW Tools : StdFile and Select
  4714.                        Size = -1 Rmaker Template?
  4715.                             LightspeedC bug?
  4716.                        help this neophyte please!
  4717.                        Mouse Technolgy's A+ Mouse
  4718.                            Mail from Mac<->Mac
  4719.                          Re: Mail from Mac<->Mac
  4720.                           HELP TECHNICAL NOTES
  4721.                       QuickerGraf Benchmark results
  4722.                        beware quickergraf download
  4723.                            'snd ' -> SoundCap
  4724.                        Modifying Installer Scripts
  4725.            printing mac-postscript on unix-driven laserwriter
  4726.            Query: how do you make "cover page" on by default?
  4727.  
  4728.  
  4729. ----------------------------------------------------------------------
  4730.  
  4731. Date: Tue, 15 Mar 88 09:13:14 PST
  4732. From: dplatt@coherent.com (Dave Platt)
  4733. Subject: MacMag virus infects commercial software
  4734.  
  4735. According to an article in this morning's San Jose Mercury News, the "DREW"
  4736. INIT-virus has been found to have infected a commercial software product.
  4737.  
  4738. The virus, which was a "benign" time-bomb designed to display a message of
  4739. world peace on March 2nd, is present on disks containing Aldus Freehand.
  4740. The virus was inadvertently passed to Aldus by Marc Canter, president of
  4741. MacroMind Inc., which makes training disks for Aldus.  Canter avisited
  4742. Canada some time ago, and was given a disk containing a program called
  4743. "Mr. Potato Head", which lets users play with a computerized version of the
  4744. toy character.  Canter ran the program only once, and his machine was
  4745. apparently infected by the virus at this time.  Subsequently, the virus
  4746. infected a disk of training software that Canter then delivered to Aldus;
  4747. at Aldus, the virus infected disks that were then sold to customers.
  4748.  
  4749. Although this virus was believed to be harmless, Canter reports that it forced
  4750. his Macintosh II computer to shut down and caused him to lose some computer
  4751. information.  "My system crashed," Canter said, "I was really angry."
  4752.  
  4753.     (( Not all that surprising... quite a few popular but nonstandard
  4754.            programming tricks used on the classic Mac don't work on the Mac II
  4755.            due to its different video card/monitor architecture...  many
  4756.            games, etc. don't run on the II for this reason and can cause some
  4757.            very impressive system crashes...  dcp ))
  4758.  
  4759. Canter fears that more of his customers may have been infected by the virus.
  4760. MacroMind's clients include Microsoft Corp., Lotus Development Corp., Apple
  4761. Computer Inc. and Ashton-Tate.
  4762.  
  4763. Microsoft has determined that none of its software has been infected, a
  4764. company spokeswoman said.  Apple and Lotus could not be reached for comment.
  4765. Ashton-Tate declined to comment.
  4766.  
  4767. Aldus would not comment on how many copies of FreeHand are infected, but
  4768. admits that a disk-duplicating machine copied the infected disk for three
  4769. days.  Half of the infected disks have been distributed to retail outlets;
  4770. the other half are in Aldus' warehouse.
  4771.  
  4772. Aldus will replace the infected disks with new, uninfected copies to any
  4773. FreeHand buyer who requests it, according to Aldus spokeswoman Laury Bryant.
  4774. The company will also replace the infected disks in its warehouse.
  4775.  
  4776.     (( As I recall, the DREW virus infects the System file on affected
  4777.            disks, but doesn't affect applications directly.  I suppose that
  4778.            Aldus could salvage the damaged disks by replacing the System
  4779.            folders with copies from a locked, uninfected disk... but it'll
  4780.            probably be faster for them to simply erase and reduplicate.
  4781.  
  4782.        I have no idea what Canadian liability laws are like these days...
  4783.            but I rather suspect that if MacMag were a United States company
  4784.            rather than a Canadian one, its publisher would now be extremely
  4785.            vulnerable to a liability-and-damages suit of some sort.  This
  4786.            escapade will probably cost Aldus a pretty piece of change in
  4787.            damage-control expenses and perhaps loss-of-sales or injury-to-
  4788.            reputation.
  4789.  
  4790.            Kids, don't try this sort of thing at home!
  4791.  
  4792.                     --- dcp ))
  4793.  
  4794. ------------------------------
  4795.  
  4796. Date: 19 Mar 88  0950 PST
  4797. From: Tovar <TVR%CCRMA-F4@SAIL.Stanford.EDU>
  4798. Subject: Hard disk write protect
  4799.  
  4800. This virus randomness just points out something that has bugged me ever since
  4801. the introduction of Mac hard disks.  It's real obvious to anyone who's ever
  4802. had to put a mangled file system back together.  Almost none of the current
  4803. generation of hard disks have a WRITE PROTECT switch!  Nevermind malicious
  4804. programs, it would be a wonderful thing for ordinary debugging to only be
  4805. able to write on a floppy.  Given appropriate software support, it might
  4806. even detect most, if not all, current viruses, and those trojan horses which
  4807. don't use AppleTalk to squirrel away their surreptiously gathered information.
  4808. (Viruses in an AppleShare environment are beyond the scope of this note).
  4809. I find it quite surprising about this recent omission, as for years, such a
  4810. switch was standard equipment on disk drives.
  4811.  
  4812. While i make no claim whatsoever about eliminating malicious programs using
  4813. a WRITE PROTECT switches, it will allow one to run "cute demos" without
  4814. putting one's data and/or organization at risk.  More importantly, it would
  4815. be a useful debugging aid ordinary circumstances.  Hard disk manufacturers
  4816. (and Apple):  Are you listening??
  4817.  
  4818. ------------------------------
  4819.  
  4820. Date: Fri, 18 Mar 88 16:20:11 EST
  4821. From: "William E. Williams"
  4822. From: <BSQUARE%YALEVM.BITNET@forsythe.stanford.edu>
  4823. Subject: Resource Editor
  4824.  
  4825. I notice that there haven't been any updates of the freebie resource editor in
  4826. some time.  Does this mean that MPW has pre-empted the field?  Does anyone
  4827. know if it is legally possible to get a resource editor that will handle all
  4828. the new resources without shelling out the bucks to buy MPW (which I do not
  4829. need)?  Or is it a question of just getting templates for the new resources,
  4830. and if it is, where can I find the templates and instructions for their use?
  4831.  
  4832.                                        -B2
  4833.  
  4834. ------------------------------
  4835.  
  4836. Date:       Fri, 18 Mar 88 08:51:45 PST
  4837. From: PUGH@NMFECC.ARPA
  4838. Subject: MPW Tools : StdFile and Select
  4839.  
  4840. I was reading Joel West's book "Programming with MPW" and it mentions two
  4841. tools that are not present in my copy of MPW 2.0.2, StdFile and Select.  Both
  4842. of these sound like easy add ons, but I am more interested in just using them
  4843. rather than rewriting them.  Does anyone have these?  Can they explain where
  4844. they came from?  I spoke with Joel at MacWorld and he seemed to think that
  4845. they came with MPW, but I do not believe this to be true.  Any other insights?
  4846.  
  4847. Jon
  4848.  
  4849.          N         L                          pugh@nmfecc.arpa
  4850.           M    A    L          National Magnetic Fusion Energy Computer Center
  4851.            F    T    N             Lawrence Livermore National Laboratory
  4852.             E         L                       PO Box 5509 L-561
  4853.              C                           Livermore, California 94550
  4854.               C                                (415) 423-4239
  4855.  
  4856. ------------------------------
  4857.  
  4858. Date: 21 Mar 88 11:32:00 EST
  4859. From: "NRL::MCCOWAN" <mccowan%nrl.decnet@nrl.arpa>
  4860. Subject: Size = -1 Rmaker Template?
  4861.  
  4862. Does anyone have an RMaker template for the Size Resource.  It would be
  4863. nice to not have to use Resedit to paste in the resource everytime we relink.
  4864. I am using Absoft fortran V2.3, and would like to make applications that
  4865. background with the least difficulty.  Thanks.
  4866.  
  4867. BobMcCowan
  4868. McCowan@NRL.ARPA
  4869.  
  4870. ------------------------------
  4871.  
  4872. Date: Tue, 22 Mar 88  21:22:04 CST
  4873. From: PHYS300%UNLCDC3.BITNET@forsythe.stanford.edu
  4874. Subject: LightspeedC bug?
  4875.  
  4876. I have just created a text file using fprintf() in LightspeedC.  I had my
  4877. little program print out the first 100 even integers, then a "\n" linefeed,
  4878. followed by the next 100 integers, a linefeed, and so on.  Nothing
  4879. remarkable.  Afterwards I opened the datafile using the LSC editor.  To my
  4880. surprise I could not scroll horizontally to see all the numbers.  Specifically,
  4881.  I made the window as large as I could (Mac +) and then dragged the scroll box
  4882. all the way to the right.  I could only get as far as number 150 - three
  4883. fourths of the way across the file.  The data was there - I could see it by
  4884. moving the window to the left and then using the grow-box to make it wider.
  4885. Isn't scrolling supposed to allow me to see the entire window, no matter what?
  4886. Or am I missing something?  I am using LSC 2.01.
  4887.  
  4888. Any comments?
  4889.  
  4890. Glenn Sowell
  4891. PHYS300@UNLCDC3.BITNET
  4892.  
  4893. Dept. of Physics & Astronomy
  4894. Univ. of Nebraska
  4895. Lincoln, NE 68588-0111
  4896.  
  4897. (402) 472-2790
  4898.  
  4899. ------------------------------
  4900.  
  4901. Date: Sat 19 Mar 88 10:38-EST
  4902. From: Larry Kolodney <LKK@XX.LCS.MIT.EDU>
  4903. Subject: help this neophyte please!
  4904.  
  4905.  
  4906. I'm not on this list, but I'm desparately in need of some help.
  4907. When I turn on my MAC SE (With built in hard disk, 1 meg of memory) I get a
  4908. "frowning mac" symbol, along with two strings of hex digits, zeros ending
  4909. in 'F' and 'EF' respectively.  What does this mean?  Can I fix it myself
  4910. (by chip swapping?).
  4911.  
  4912.  
  4913. Thanks,
  4914. larry kolodney
  4915.  
  4916. ------------------------------
  4917.  
  4918. Date: Sat, 19 Mar 88  12:43:57 EST
  4919. From: Rahaim%UMass.BITNET@Forsythe.Stanford.EDU
  4920. Subject: Mouse Technolgy's A+ Mouse
  4921.  
  4922.   Has any one had any Experience with the A+ opticle Mouse? I am getting
  4923. frustrated with me old mouse (2+ years old) and am thinking of moving
  4924. to the A+ mouse. Has any one used any other Opticle Mice?
  4925.             Thanks,
  4926.                Jason
  4927. =+=+=+=+=+=+=+=+=+=+=+=+=+=+
  4928.   PS If my boss knew I had a Mac he'd cut my pay...
  4929.  
  4930. ------------------------------
  4931.  
  4932. From: shmuel browns <shmuli@humus.huji.ac.il>
  4933. Date: Wed, 16 Mar 88 17:15:24 JST
  4934. Subject: Mail from Mac<->Mac
  4935.  
  4936.     I've been looking at mail systems for Appletalked Macs and have been sadly
  4937. disappointed with what is currently available, which is as far as I can tell:
  4938.     i)  Videx
  4939.    ii)  Top Express
  4940.   iii)  InterMail
  4941.    iv)  InBox
  4942. If anyone knows of other programs, I'd appreciate knowing.
  4943.  
  4944.     I'm interested in being able to send multi-media messages, i.e. text with
  4945. various fonts, graphics, sound, animation, etc., a kind of cross between
  4946. Ready, Set, Go, HyperCard and VideoWorks II (BTW, does anyone know anything
  4947. about VideoWorks Interactive, the VW program that is supposed to interface to
  4948. HyperCard - is it available, price, etc.) from Mac to Mac over AppleTalk.
  4949.  
  4950.     I need to be able to transfer these messages, compressed would be nice,
  4951. unattended or in the background, over one of the university nets like
  4952. Usenet or Bitnet.
  4953.  
  4954.     I've come across 2 leads & would appreciate any information and a contact:
  4955.     i)  A Mac mail program (Stanford) that provides MH functionality using a
  4956.         UNIX mail server.
  4957.    ii)  MacMessages, a Mac program that integrates with the Andrew Message
  4958.         System (CMU).  (If you know about Andrew, could you tell me if there
  4959.         is a group like INFO-ANDREW or something where things are discussed -
  4960.         I'd sure like to subscribe).
  4961.  
  4962.     Thanks.     Shmuel
  4963.  
  4964. ------------------------------
  4965.  
  4966. Date: Fri, 18 Mar 88 10:02:22 -0500 (EST)
  4967. From: "Richard A. Jones" <rj0e+@andrew.cmu.edu>
  4968. Subject: Re: Mail from Mac<->Mac
  4969.  
  4970. Here is some information on MacMessages...
  4971.  
  4972. MacMessages is a (limeted) port of the Andrew Message program to the Macintosh
  4973. so students can send and recieve mail from their Macintosh.  It is unlikely
  4974. that it will be multi-media because the media that Messages is 'multi' in are
  4975. all Andrew specific. True, they could be ported, but it unlikely that it will
  4976. happen.  This will not give you the solution you seek as it will not work with
  4977. Mac programs.
  4978.  
  4979. One idea i have for a soln is using Appleshare drop boxes - there are ways to
  4980. have Atalk going over internets (Cayman and Kinetics boxes), so conceivably,
  4981. you could 'drag' a message (read document from Hypercard etc) into the drop box
  4982. - then the message/document goes across the net.  there are indeed limitations,
  4983. and i can discuss them further if anyone is really interested.
  4984.  
  4985. in sort though, MacMessages, though what you want in spirit, isn't quite what
  4986. you want in reality.
  4987.  
  4988. rick jones
  4989.  
  4990. please note - i am not a part of the Andrew Message Group.  my knowledge comes
  4991. from being a part of the student led group that put the thorn in their side to
  4992. get MacMessages going.  for more official information, you can send mail to
  4993. advisor@andrew.cmu.edu - he/she then can/may refer you to a member of the
  4994. Messages group
  4995.  
  4996. ------------------------------
  4997.  
  4998. Date: 22 Feb 88 11:10:00 GMT-1:00
  4999. From: "" <mcvax!amolf!vanelst@uunet.UU.NET>
  5000. Subject: HELP TECHNICAL NOTES
  5001.  
  5002. I am missing Tecnical notes nr. 106-117 and 138-154.
  5003. Is there anyone in MACLAND who can help me to get these notes.
  5004. Thanks,
  5005.       Jan van Elst
  5006.       Amolf
  5007.       Netherland
  5008.  
  5009. VANELST%AMOLF.SURFNET@SARA.NL  (BITNET)
  5010. ...MCVAX!AMOLF!VANELST         (UUCP)
  5011. VANELST@AMOLF.UUCP
  5012. JNET%"VANELST%AMOLF.SURFNET@HASARA5"
  5013.  
  5014. ------------------------------
  5015.  
  5016. Date: Tue, 22 Mar 88 14:25:08 PST
  5017. From: digiorgi@VLSI.JPL.NASA.GOV
  5018. Subject: QuickerGraf Benchmark results
  5019.  
  5020. I've been using Andy Hertzfeld's "QuickerGraf v1.0" (and some of the
  5021. earlier releases in 0.9 and up format of QuickerDraw) on my Mac II with
  5022. SuperMac Spectrum/Ikegami (not Sony... I can never remember it correctly)
  5023. 19" color monitor and I thought that the net folks would be interested in
  5024. his benchmark results.
  5025.  
  5026. Were not for QuickerGraf, I would use this monitor in B&W mode all the time
  5027. as it is just too unresponsive in multiBit color mode.   Sad but true.
  5028.  
  5029.  Simple pixel pattern fill no clip          281%
  5030.  Simple pixel pattern fill clip             325%
  5031.  fill oval unclipped simple pattern         239%
  5032.  fill roundRect unclipped simple pattern    269%
  5033.  unclipped unmapped copymode copyBits       160%
  5034.  copyBits with color mapping                307%
  5035.  1-8 copyBits no clipping                   195%
  5036.  addOver fill mode, simple pattern         1097%
  5037.  blend fill mode, simple pattern           2383%
  5038.  transparent fill mode, simple pattern      894%
  5039.  hilite mode, region clipped                267%
  5040.  
  5041. I don't know how variant these numbers are from the rest of the available
  5042. Mac II color monitor world, but if they are indicative of the performance
  5043. differences across the board, Apple should be pushed to incorporating these
  5044. improvements into the next version of the ROM or the next System/Finder
  5045. release as a Color QuickDraw patch.
  5046.  
  5047. I haven't found any programs that were incompatible with the INIT to date
  5048. and want to thank Andy for making my $3000 color video system useful at
  5049. last.
  5050.  
  5051. Godfrey DiGiorgi
  5052. digiorgi@jpl-vlsi.arpa
  5053. March 22, 1988
  5054.  
  5055. ------------------------------
  5056.  
  5057. Date: Tue, 22 Mar 88 21:54 EST
  5058. From: <BELSLEY%BCVMS.BITNET@forsythe.stanford.edu> (DAVID A. BELSLEY)
  5059. Subject: beware quickergraf download
  5060.  
  5061. I just downloaded QuickerGraf from macserve.  All went well; binhex and
  5062. stuffit produced nice looking applications - the quickergraf init and the
  5063. benchmark application.  I installed quickergraf, rebooted, all worked well.
  5064. I ran the benchmark, and the results were impressive indeed.
  5065.  
  5066. Then I went into the control panel to check the effect of resetting the
  5067. desktop color.  The HD40 clicked and blicked.  The control panel finally
  5068. came up in about five times the normal time.  I changed colors, all worked
  5069. well.  I closed the control panel, and openned it again.  It still took a
  5070. longer than usual time.  So I took quickerdraw out of the system folder and
  5071. rebooted.  The smiley face appeared, but just momentarily.  The screen
  5072. flickered, cleared, and the question mark appeared.  No booting off the hard
  5073. disk.
  5074.  
  5075. I inserted a write protected system disk, and the machine booted.  I grabbed
  5076. my backup disk for the system (also write protected) and replaced the system
  5077. on the hard disk.  All seems OK again.  It booted.
  5078.  
  5079. The configuration is a Mac II with System stuff 5.0, 5megs and internal 40Meg
  5080. hard disk, color monitor, expansion card.  Of course, there are a number of
  5081. reasons such behavior could have arisen that have nothing to do with quicker-
  5082. graf.  The download could have been corrupted.  But beware.  And I would be
  5083. very interested in knowing if anyone else encounters similar problems.
  5084.  
  5085. [
  5086. Same configuration that I use.  I have no troubles.
  5087.    Jon
  5088. ]
  5089.  
  5090. david a. belsley
  5091. boston college          belsley@bcvax3.bitnet
  5092.  
  5093. ------------------------------
  5094.  
  5095. Date: Tue 8 Mar 88 20:53:15-EST
  5096. From: JA1W@TE.CC.CMU.EDU
  5097. Subject: 'snd ' -> SoundCap
  5098.  
  5099.  
  5100. Is there any utility out there which converts 'snd ' (Hypercard) resources
  5101. to SoundCap (data fork) sound files? All of the conversion programs that I have
  5102. encountered go from SoundCap to 'snd ', yet some programs still use the old
  5103. format... If anyone has made such a utility or knows of one that exists, please
  5104. send me mail or post a message here on INFO-MAC, please.
  5105.  
  5106.     Thanks,
  5107.     Jesse
  5108.  
  5109. _~_~_~_~_~_~_~_~_~_~_~_~_~_~_~_~_~_~_~_~_~_~_~_~_~_~_~_~_~_~_~_~_~_~_~_~_~_~_~
  5110. Jesse Adelman                Disclaimer: I have no money, so I don't
  5111. Network Administrator                    care if they sue me for
  5112. Macintosh Archive Maintainer                every penny I've got
  5113. Carnegie Mellon University
  5114. Internet: JA1W+@Andrew.CMU.EDU        USnail: 596 Dorseyville Road
  5115. BITNET: JA1W+%Andrew.CMU.EDU@CMUCCVB        Pittsburgh, Pa 15238
  5116. _~_~_~_~_~_~_~_~_~_~_~_~_~_~_~_~_~_~_~_~_~_~_~_~_~_~_~_~_~_~_~_~_~_~_~_~_~_~_~
  5117.  
  5118. ------------------------------
  5119.  
  5120. Date: Thu, 10 Mar 88 17:57:04 EST
  5121. From: David_S._Allan@ub.cc.umich.edu
  5122. Subject: Modifying Installer Scripts
  5123.  
  5124. How does one change the installer scripts that come with the most recent
  5125. system upgrade? I want to set up a script that will allow novice users in our
  5126. department to update their System, Finder, and printer drivers, but I don't
  5127. want to install EasyAccess, Sticky Keys, and some of the other items.
  5128.  
  5129. The scripts can be opened with ResEdit. They contain a single 'insc'
  5130. resource, which ResEdit recognizes. I can see the items that I want to remove
  5131. in the resource. However, I don't know how to delete those items, and I am
  5132. not sure if I know everything to change. When deleting, I tried deleting the
  5133. **** between items, but then ResEdit gets confused. I also had mixed success
  5134. opening the resource in the general resource editor (hex) and deleting
  5135. certain portions. However, it is hard to know exactly where each item to be
  5136. installed starts, and files so modified yield an error message when trying to
  5137. run the Installer program.
  5138.  
  5139. I appreciate your help with this problem.
  5140.  
  5141. ------------------------------
  5142.  
  5143. Date: Thu, 10 Mar 88 21:31:01 EST
  5144. From: Yi Wan Wong <wong-yi-wan@YALE.ARPA>
  5145. Subject: printing mac-postscript on unix-driven laserwriter
  5146.  
  5147. We have newly acquired a laserwriter II and has it hooked up to our SUN
  5148. network.  However, I would like to print MacDraw/MacDraft pictures
  5149. on this laserwriter too.  Does anybody have any experience with that?
  5150. I heard that postscript files generated by the Mac are not directly printable
  5151. on a unix-driven Apple Laserwriter.  Are there quick fixes?  Thanks.
  5152.  
  5153. Yiwan Wong
  5154. Department of Computer Science
  5155. Yale University
  5156. New Haven, CT06520.
  5157. email: wong-yi-wan@yale.cs.edu
  5158.  
  5159. ------------------------------
  5160.  
  5161. Subject: Query: how do you make "cover page" on by default?
  5162. Date: Tue, 15 Mar 88 11:21:25 PST
  5163. From: guyton%condor@rand-unix.ARPA
  5164.  
  5165. We have a large number of people sharing laser-writers on
  5166. our appletalk wire; does anyone know how I can tweak their
  5167. system/laserwriter files to make printing a cover page the
  5168. default?
  5169.  
  5170. Thanks,
  5171.  
  5172. -- Jim Guyton
  5173.    arpa:  guyton@rand.org
  5174.    uucp:  ....!randvax!guyton
  5175.  
  5176. ------------------------------
  5177.  
  5178. End of INFO-MAC Digest
  5179. **********************
  5180. 27-Mar-88 12:48:30-PST,22661;000000000000
  5181. Mail-From: INFO-MAC-REQUEST created at 27-Mar-88 12:09:40
  5182. Date: 27 Mar 88 1209-PST
  5183. From: Moderators Jon Pugh, Dwayne Virnau, Lance Nakata
  5184. Reply-to: INFO-MAC@SUMEX-AIM.Stanford.EDU
  5185. Subject: INFO-MAC Digest   V6 #33
  5186. To: INFO-MAC@SUMEX-AIM.Stanford.EDU
  5187.  
  5188.  
  5189. INFO-MAC Digest          Monday, 28 Mar 1988       Volume 6 : Issue 33
  5190.  
  5191. Today's Topics:
  5192.                      kermit and red ryder questions
  5193.                               MAC/II timers
  5194.                                re: XC68881
  5195.                                 Scanners
  5196.                          AppleTalk & 3COM system
  5197.                                mac ii bbs
  5198.                                  Prolog
  5199.               How to write superscript/subscript in EXCEL?
  5200.                           Brown Univ. Hypertext
  5201.                                 A+ Mouse
  5202.                    PREC Resources for the LaserWriter
  5203.                   A RUN-TIME DATABASE FOR A DESIGN FIRM
  5204.                            Mythical EtherTalk?
  5205.                   IBM 3101 emulation *and* filetransfer
  5206.                               Public Domain
  5207.                         Envelopes, Quick and Easy
  5208.                   Interactive Fiction/David's Sling???
  5209.                 BITNET access to released INFO-MAC files?
  5210.                        DECNET/Appletalk connection
  5211.                         Symbolic Math on the Mac
  5212.                               Stuffit 1.31
  5213.                            New BBS suggestions
  5214.                      Apple tech notes in IM archives
  5215.  
  5216.  
  5217. ----------------------------------------------------------------------
  5218.  
  5219. Date: Tue, 15 Mar 1988 11:18 CST
  5220. Date: Tue, 15 Mar 88 11:18 CST
  5221. From: <OPTON@UHVAX1>
  5222. Subject: kermit and red ryder questions
  5223.  
  5224. I am using RED RYDER v9.2 and MacKermit v0.8(33).  What do these
  5225. programs use for a <break> key?
  5226.  
  5227. Thanks
  5228.  
  5229. Lee Thomison
  5230. BITNET: OPTON@UHVAX1
  5231. landline: (713) 749-3127
  5232.  
  5233. ------------------------------
  5234.  
  5235. Date: 15 Mar 88 13:14:25 EST
  5236. From: Mark.Perlin@CAD.CS.CMU.EDU
  5237. Subject: MAC/II timers
  5238.  
  5239. I am interested in finding out the number and type of
  5240. timer/counter chips available to the programmer on the Macintosh/II.
  5241. Would anyone know either
  5242.     - the answer to this question, or
  5243.     - how to go about finding out the answer?
  5244.  
  5245. Thank you.
  5246.  
  5247. ------------------------------
  5248.  
  5249. Date: Tue, 15 Mar 88 10:01:25 EST
  5250. From: Jack Hill <jdhill@BFLY-VAX.BBN.COM>
  5251. Subject: re: XC68881
  5252.  
  5253.  
  5254.     As I understand it, the XC prefix designates these chips as engineering
  5255. samples or proto-types. We had experience with the XC68881s a while back and
  5256. discovered they were producing incorrect results for some floating point
  5257. functions. FLOGN and FSQRT are the instructions that come to mind. You should
  5258. be able to get an errata sheet from Motorola if you want the details.
  5259.  
  5260. Jack Hill
  5261. BBN Advanced Computers, Inc.
  5262.  
  5263. ------------------------------
  5264.  
  5265. Date: 15 Mar 88 17:01:42 EST
  5266. From: Richard.Quadrel@CAD.CS.CMU.EDU
  5267. Subject: Scanners
  5268.  
  5269. Does anyone have any recommendations on scanners to be used with the Mac II?
  5270. I would like to archive several thousand documents, and am interested in any
  5271. reports on the qualities/capabilities of scanning hardware/software.
  5272. Thanks.
  5273. Rich Quadrel
  5274. rquadrel@cad.cs.cmu.edu
  5275.  
  5276. ------------------------------
  5277.  
  5278. Date: Wed, 16 Mar 1988 10:46:14 CET
  5279. From: Guido Dilles <KAMBVL%BLEKUL13.BITNET@forsythe.stanford.edu>
  5280. Subject: AppleTalk & 3COM system
  5281.  
  5282.  
  5283. We're planning to set up a small network of about 7 Mac SE / Mac II's, all
  5284. with hard disks.  We're considering using a 3Com server as the network file,
  5285. print and backup server using AppleTalk (or Ethernet ?).
  5286. If you are using a 3Com server with Mac's attached, I invite your comments,
  5287. good or bad experiences, caveat's, appreciations of speed, compatibility, etc.
  5288.  
  5289. Please respond directly to me, and I'll summarize to the list.
  5290.  
  5291. Guido Dilles  <KAMBVL@BLEKUL13.BITNET>
  5292. University Psychiatric Hospital St.-Kamillus
  5293. Catholic University Leuven - Belgium
  5294. Acknowledge-To: <KAMBVL@BLEKUL13>
  5295.  
  5296. ------------------------------
  5297.  
  5298. Date: Wed, 16 Mar 88 21:18 EST
  5299. From: AELevy@DOCKMASTER.ARPA
  5300. Subject: mac ii bbs
  5301.  
  5302. Hi, Washington Apple Pie , the Wash DC area user group is considering
  5303. upgrading its current system of 8 networked apple IIs on a corvus net.
  5304. It may be the only multiuser club system.  One possibility is to go to
  5305. networked Mac IIs .  Does anything of this kind exist or is being
  5306. written??  We feel that we would like to run many users on each Mac II.
  5307. We currently support about 330meg of download (DOS 3.3 , Prodos , cpm
  5308. ,mac) as well as 4 conferences of 32 selectable boards.  Hopefully we
  5309. can get something almost off the shelf.  Regards, Allan E.  Levy
  5310.  
  5311. ------------------------------
  5312.  
  5313. Date: Fri, 18 Mar 88 09:38:07
  5314. From: <HERDE%EMBL.BITNET@CUNYVM.CUNY.EDU>
  5315. Subject: Prolog
  5316.  
  5317.  
  5318. Hi everyone,
  5319.  
  5320.  I'm interested in finding out about versions of PROLOG that run on the MAC.
  5321. Perhaps someone has had some/lots-of experience with MAC PROLOGs - any
  5322. recommendations for a 'good' version (whatever that is!)? I am interested
  5323. also in PROLOG's that may contain some form of in built teaching facility-
  5324. any help would be much appreciated.
  5325.  
  5326.   Pat Herde
  5327.  
  5328. ------------------------------
  5329.  
  5330. Date: Wed, 16 Mar 88 19:22 EST
  5331. From: "Kang Sun <sun@yalevms.bitnet,sun@venus.ycc.yale.edu>"
  5332. Subject: How to write superscript/subscript in EXCEL?
  5333.  
  5334. Is it possible to draw superscripts and subscripts in EXCEL ?
  5335. --- Kang Sun
  5336.     sun@yalevms
  5337.  
  5338. ------------------------------
  5339.  
  5340. Date:       Mon, 21 Mar 88 11:26:51 PST
  5341. From: grow#jerry%e.mfenet@NMFECC.ARPA
  5342. Subject: Brown Univ. Hypertext
  5343.  
  5344. From: grow%mfe.mfenet@nmfecc.arpa (Jerry Grow)
  5345. Subject: Hypertext at Brown University
  5346. Date: March 20, 1988
  5347. Organization: Lawrence Livermore National Lab
  5348.  
  5349. gnu@hoptoad.uucd (John Gilmore) wrote on Feb 26, 1988:
  5350. > The fourth [picture of a Mac screen] is running
  5351. > unavailable software from Brown University that brings
  5352. > up pictures and text from British novels using the
  5353. > Toolbox. (By the way, they are calling the Brown stuff
  5354. > "hypertext" and taking Ted Nelson's name in vain. It
  5355. > ain't hypertext, it's just hype.)
  5356.  
  5357. To the contrary, Brown University's "stuff" is true
  5358. hypertext and has roots going directly back to Ted Nelson.
  5359. Andy van Dam, who founded Brown's computer science dept,
  5360. has been developing hypertext systems for more than 20
  5361. years. He worked with Ted Nelson in 1967 and 1968 in
  5362. developing the Hypertext Editing System.
  5363.  
  5364. Brown U. has been working with hypertext for more than 15
  5365. years and established IRIS (Institute for Research in
  5366. Information Scholarship) in 1983. IRIS is now working on
  5367. Intermedia, a true hypertext system that runs on an IBM RT
  5368. under UNIX 4.2; it's now being ported to a Mac II using
  5369. A/UX.
  5370.  
  5371. To quote from Jeff Conklin's "Hypertext: An Introduction
  5372. and Survey" (IEEE Computer Magazine, Sept. 1987, pp 28-29):
  5373. "One of the oldest and largest hypertext research groups
  5374. exists at Brown University's Institute for Research in
  5375. Information Scholarship (IRIS). The Intermedia project
  5376. builds on two decades of work and three prior generations
  5377. of hypertext systems."
  5378.  
  5379. Since Gilmore brought up Ted Nelson's name, it is only fair
  5380. to point out that Nelson was not the only pioneer working
  5381. on hypertext. Douglas Engelbart started his hypertext work
  5382. at the same time Nelson did (each man worked independently),
  5383. but Douglas is a very modest individual who does not seek
  5384. the limelight. Consequently, he is not nearly so well known
  5385. as Nelson.
  5386.  
  5387. Doug Engelbart, among his other accomplishments, invented
  5388. the mouse. In 1968, he gave a presentation to several
  5389. thousand computer experts of the day, at the Fall Joint
  5390. Computer Conference in San Francisco, in which he vividly
  5391. demonstrated the concept of an interactive desktop personal
  5392. computer using windowing effects.
  5393.  
  5394. In those days, Doug worked at Stanford Research Institute
  5395. (SRI) in Menlo Park. When SRI management, in their infinite
  5396. wisdom, decided not to support such foolishness any longer,
  5397. many of Doug's group moved to Xerox PARC, where they
  5398. continued their work. Eventually, Apple Computer picked up
  5399. the work that Doug and his people had begun and came out
  5400. with -- guess what -- the Macintosh!
  5401.  
  5402. Doug moved to Tymshare, where he continued working on his
  5403. own hypertext system, called Augment. Today, Augment is
  5404. owned by McDonnell Douglas Information Systems and faces
  5405. an uncertain future.
  5406.  
  5407. Finally, giving credit where credit is due, neither Ted
  5408. Nelson nor Doug Engelbart originated the concept of
  5409. hypertext. That honor belongs to Vannevar Bush, who wrote
  5410. his famous article, "As We May Think" in 1945. This article
  5411. has been reprinted in "The New Papyrus: CD ROM, published
  5412. by Microsoft Press in 1986 (ISBN 0-914845-75-6). Bush's
  5413. article is well worth reading, even today.
  5414.  
  5415. I hope these comments set the record straight. If anyone
  5416. is still skeptical about Brown University's hypertext, or
  5417. about Ted Nelson sharing his pioneering honors with Doug
  5418. Engelbart, all I can suggest is that the skeptics check
  5419. the literature. It's all there.
  5420.  
  5421.  --Jerry Grow
  5422.  
  5423. ------------------------------
  5424.  
  5425. Date: Wed, 23 Mar 88 09:35:20 EST
  5426. From: Bill Apgar <OEPAPGAR@UOGUELPH>
  5427. Subject: A+ Mouse
  5428.  
  5429.  
  5430. Jason  (Rahaim%UMass.BITNET@Forsythe.Stanford.EDU):
  5431. I use the A+ optical mouse - have done so for about a year or so.  I
  5432. didn't think I would find it useful at first, but have never gone
  5433. back to the original - difference is like that between a "Star Wars"
  5434. (the movie) hovercraft and a WWII Jeep.  Very smooth and has never
  5435. required any maintenance except a little alcohol to clean the metal
  5436. plate it rides on.  I am working in a mostly IBM PC environment - brought
  5437. my Mac Plus in to work.  Macs are still in the shadows, but they are
  5438. doing a lot of work on this campus and others!  P.S.  - I am researching
  5439. course authoring software, CBI, technology in the classroom and aiding
  5440. faculty in exploring new teaching methods.  Your perspective, whether
  5441. you are staff, faculty or student would be welcomed.  Also any ideas
  5442. or reference citations you may uncover of interest would be appreciated!
  5443. Send me a note!   Bill Apgar
  5444. (I would appreciate any input from others as well ...)
  5445. oepapgar@uoguelph
  5446.  
  5447. ------------------------------
  5448.  
  5449. Date: Wed, 23 Mar 88 13:28:52 EST
  5450. From: Tom Downey x2558 11/321 <tdowney@BFLY-VAX.BBN.COM>
  5451. Subject: PREC Resources for the LaserWriter
  5452.  
  5453. Can anyone point me at information about editing PREC resources for the
  5454. LaserWriter? We have a QMS Postscript printer that accepts 11x17 paper and
  5455. I would like to be able to use it from various Mac programs. The PREC
  5456. resources in the LaserWriter file look significantly different from the
  5457. PREC 3 in the Imagewriter file.
  5458.  
  5459. Tom Downey
  5460. BBN Advanced Computers
  5461. tdowney@bbn.com
  5462.  
  5463. ------------------------------
  5464.  
  5465. Date: Wed, 23 Mar 88 17:22 AST
  5466. From: Stan Armstrong <ARMSTRONG%STMARYS.BITNET@forsythe.stanford.edu>
  5467. Subject: A RUN-TIME DATABASE FOR A DESIGN FIRM
  5468.  
  5469. Anyone out there seen a run-time database designed
  5470. to help run a design/production house (i.e. track
  5471. jobs, keep track of artwork, bill for services, keep
  5472. track of subcontractors, issue invoices & the whole
  5473. ball of rubber cement)?  I'm looking for one that
  5474. will run on Macintosh or IBM PC.
  5475.  
  5476. ------------------------------
  5477.  
  5478. Date: Wed, 23 Mar 88 19:02:17 PST
  5479. From: digiorgi@VLSI.JPL.NASA.GOV
  5480. Subject: Mythical EtherTalk?
  5481.  
  5482.  
  5483. Apple's EtherTalk card for the Mac II
  5484.  
  5485. I keep hearing all about people experimenting with the EtherTalk card and
  5486. TCP/IP and all that hooey on the nets... I ordered one of these cards way back
  5487. in September or so when I ordered the II for my current project and it still
  5488. hasn't arrived.  Every time I call the buyer on it, I get told "the dealer
  5489. says Apple isn't shipping yet".
  5490.  
  5491. How come everybody else got theirs?  Is Apple actually shipping or is it all a
  5492. myth that lots of folks are sharing?
  5493.  
  5494. grrr.
  5495.  
  5496. Godfrey DiGiorgi
  5497. digiorgi@jpl-vlsi.arpa
  5498. 23 Mar 1988
  5499.  
  5500. ------------------------------
  5501.  
  5502. Date: Thu, 24 Mar 88 12:23:41 CET
  5503. From: Guido Dilles <KAMBVL%BLEKUL13.BITNET@forsythe.stanford.edu>
  5504. Subject: IBM 3101 emulation *and* filetransfer
  5505.  
  5506.  
  5507. We have to dial-in to our university IBM-mainframe through a protocol
  5508. convertor that only accepts IBM 3101 (?) terminal emulation.
  5509. The people over there know of several packages for IBM PC's that can do
  5510. 3101 *screen-emulation* but of only one (IBM's own FTTERM) that can also
  5511. do 3101 *file-transfer* (and which, of course, only runs on PC's).
  5512.  
  5513. Does anybody know a terminal emulation package for the MacIntosh that
  5514. that can do both 3101 terminal emulation *AND* 3101 file transfer ?
  5515. If so, please send me a note |
  5516.  
  5517. Guido Dilles       Bitnet/Earn : KAMBVL@BLEKUL13
  5518.                    Internet    : KAMBVL%BLEKUL13.BITNET@CUNYVM.CUNY.EDU)
  5519. University Psychiatric Centre St.-Kamillus
  5520. Catholic University Leuven - Belgium
  5521. Acknowledge-To: <KAMBVL@BLEKUL13>
  5522.  
  5523. ------------------------------
  5524.  
  5525. Date: Thu, 24 Mar 88 07:44:14 EST
  5526. From: sem@mitre-bedford.ARPA (McQueen)
  5527. Subject: Public Domain
  5528.  
  5529. Kaihu Chen writes:
  5530. >Dragon 2.1 is not shareware; it is public domain, with the only limitation
  5531. >that it may not be used for commercial purposes.  You may freely distribute
  5532. >it to any interested party.
  5533.  
  5534. My understanding of the meaning of "public domain" is that, having placed a
  5535. work in the public domain, an author has no control over future uses of that
  5536. work.  One cannot simultaneously place a work in the public domain and restrict
  5537. its use.
  5538.  
  5539.                         Stan McQueen
  5540.                         sem@MITRE-BEDFORD.ARPA
  5541.  
  5542. ------------------------------
  5543.  
  5544. Date: Thu, 24 Mar 88 08:08:53 EST
  5545. From: koch@nadc.arpa (C. Koch)
  5546. Subject: Envelopes, Quick and Easy
  5547.  
  5548.  
  5549. A note in Macintosh today mentioned a DA for addressing envelopes.  Named
  5550. Kiwi Envelopes, it is said to be shareware and available through bulletin
  5551. boards.  However, I can't find it.  Can anyone help?
  5552.  
  5553. Even with Hypercard (label fields in reports) I've found envelope addressing
  5554. a frustrating task.  Sound like this DA would help.
  5555.  
  5556. Thanks,
  5557.  
  5558.     Chuck Koch
  5559.     koch@nadc.arpa
  5560.     215-441-2462
  5561.  
  5562. ------------------------------
  5563.  
  5564. Date: Thu, 24 Mar 88 18:02 EST
  5565. From: "Jeff Perkinson"                           
  5566. From: <UNCJCP%UNC.BITNET@forsythe.stanford.edu>
  5567. Subject: Interactive Fiction/David's Sling???
  5568.  
  5569. Help!!!!
  5570.     I've got a project due real soon and need all the
  5571.     information I can get re: interactive fiction on
  5572.     the Mac.  I've heard of a commercial Hypercard
  5573.     stack called David's Sling published by HyperMedia.
  5574.     I haven't seen this stack but would appreciate
  5575.     any info on it, or any other programs/stacks that
  5576.     pertain to, or are interactive fiction.
  5577.                         Thanks
  5578.                         Jeff Perkinson
  5579.                         UNCJCP@UNC.bitnet
  5580.  
  5581. ------------------------------
  5582.  
  5583. From: MAMI%DHVRRZN1.BITNET@forsythe.stanford.edu
  5584. Date: Fri, 25 Mar 88 20:34:03 MEZ
  5585. Subject: BITNET access to released INFO-MAC files?
  5586.  
  5587. Date: 25 March 1988, 20:26:06 MEZ
  5588. From: Michael Hartje            +49-511-762-3745     MAMI     at DHVRRZN1
  5589. To:   INFO-MAC at SUMEX-AIM
  5590.  
  5591. Can anyone explain to me BITNET-user how to obtain the uploaded
  5592. files with date after 310188??? The old and very fine managed
  5593. MACSERVE at PUCC has closed now an the new one at IRLEARN is
  5594. with a file release of 310188 active since weeks. Does anybody
  5595. know something about that? When will it be released?
  5596.  
  5597. Thanks for help
  5598.  
  5599. Michael Hartje, Schering-Institute for High voltage engeneering
  5600. and high voltage plants at University of Hannover W-Germany.
  5601.  
  5602. ------------------------------
  5603.  
  5604. Date: Fri, 25 Mar 88 15:32:07 PST
  5605. From: Peter Scott <PJS@grouch.JPL.NASA.GOV>
  5606. Subject: DECNET/Appletalk connection
  5607.  
  5608. solution off-the-shelf for yet: we want to have a bunch of Macs connected
  5609. together with Appletalk, and for one of them also to act as a DECNET
  5610. node (running something like either Technology Concepts' CommUnity
  5611. or Alisa Systems' TSSNet), connected to a VAX, with the ability to
  5612. submit batch jobs to the VAX using input and output files located on
  5613. the dual-networked Mac (yes, we know this could be simulated with a
  5614. script doing remote login behind the scenes).  So far it appears
  5615. that you can't have Appletalk and the DECNET connections coexisting
  5616. on the same Mac; does anyone know different?
  5617.  
  5618. Please reply to:  Mike Hanna (mch%grouch@jpl-mil.jpl.nasa.gov)
  5619.  
  5620. ------------------------------
  5621.  
  5622. Date: 26 Mar 88 17:23:00 EST
  5623. From: "Charles E. Bouldin" <bouldin@ceee-sed.arpa>
  5624. Subject: Symbolic Math on the Mac
  5625. Reply-to: "Charles E. Bouldin" <bouldin@ceee-sed.arpa>
  5626.  
  5627. I have seen the future and it runs on a Macintosh.
  5628.  
  5629. I just got back from the American Physcial Society meeting in New Orleans,
  5630. where I was fortunate enough to see Stephen Wolfraum demonstrating Mathematica,
  5631. a symbolic math program. I am very, very impressed with this program.
  5632.  
  5633. It does symbolic math. Integration, differentiation, algebra, trig, expansions,
  5634. and on and on. More, it runs a standard "kernel" on all computers and a custom
  5635. "front end" is provided for each machine separately. I strongly suspect that
  5636. this program will become a standard since it will be out for: Mac+, Mac II,
  5637. Sun, Apollo, Dec, Alliant and just about any machine with 2.0 megs of memory
  5638. and a decent C compiler. It likely will come bundled with some machines.
  5639. (Parenthetically, it does NOT run on any MS-DOS PC, 640K limit is just too
  5640. much to overcome)
  5641.  
  5642. Mathematica files can be moved between any 2 computers running Mathematica.
  5643. Files are all ascii, graphics are all done in postscript. Machine specific
  5644. extensions (color) are kept separte from the rest of the file (resource fork
  5645. vs. data fork on the Mac). The Mac can run its Mathematica front end and
  5646. talk to a VAX or Cray over a net. The Mac does the interface, the Cray does
  5647. the crunching.
  5648.  
  5649. Any expression can be converted to C code, Fortran code or input for TeX.
  5650.  
  5651. Mathematica can be taught new things that it doesn't understand to begin with.
  5652. For example you can teach it commutators and then have it simplify complex
  5653. expressions of nested commutators. Just tell it the rules.
  5654.  
  5655. It does math to arbitary precision. PI to 100s of places, 300!, etc, etc.
  5656.  
  5657. It will plot (2D and 3D) expressions that you type in like sin(x)/x or
  5658. whatever. You can double click on a plot and it turns into the postscript code
  5659. that is "behind" the plot so you can edit the postscript or copy it to the
  5660. clipboard.
  5661.  
  5662. This is a BIG program, however. Don't even *think* about without a Mac+ with
  5663. 2.5 megs of memory. More would be better. It doesn't yet use the 68881 hardware
  5664. floats, but it was "acceptable" in speed on a Mac II. Symbolic stuff is fast,
  5665. the plotting, which uses a postscript>Mac Screen interpreter was slow. (This
  5666. also gives some taste of how slow display postscript is likely to be)
  5667.  
  5668. This thing is supposed to cost around $300-500, although pricing is not yet
  5669. set.
  5670.  
  5671. To summarize, I was blown away. This does everything that I have wanted for
  5672. symbolic math and it does it with a decent Mac interface. There is still a lot
  5673. of typing in commands, but I think this is like TeXtures, kind of unavoidable
  5674. in a program with this many degrees of freedom. I don't yet know how you get
  5675. in touch with the creators of Mathematica to inquire about this program.
  5676. Release is supposed to be in May, which is credible since the beta version
  5677. that ran at the show crashed once in the course of 3-5 hours of demoing. At
  5678. the moment I suggest contacting Wolfraum directly at the University of Illinois
  5679. and I will post new info as I am able to find it out.
  5680.  
  5681. ------------------------------
  5682.  
  5683. Date: Sat, 26 Mar 88 18:19:06 PLT
  5684. From: Will Fitzpatrick <60255873%WSUVM1.BITNET@forsythe.stanford.edu>
  5685. Subject: Stuffit 1.31
  5686.  
  5687. There seems to be an error in the lastest version of Stuffit (1.31)
  5688. specifically, files that are Binhexed with Stuffit, are NOT decodable
  5689. with regular Binhex 4.0.  The converse works fine (Binhex created
  5690. files opened by Stuffit).  This has created problems and confusion
  5691. for me, and several other persons whom I know of.
  5692.  
  5693. ------------------------------
  5694.  
  5695. Date: Sun, 27 Mar 88 00:17 EST
  5696. From: AELevy@DOCKMASTER.ARPA
  5697. Subject: New BBS suggestions
  5698.  
  5699. Hi, Washingon apple Pi (5000 member user group) is planning its next
  5700. generation bbs.  Currently we run 8 lines on 8 apple iie networked to
  5701. several hundred meg of corvus.  We have been thinking about a system
  5702. that would have several Mac II systems running a unix like system.
  5703. Requirements are:  User friendly Support large number of conferences
  5704. Support uploads and downloads of dos, prodos, cpm(?), and mac stuff.
  5705. Large number of lines (>8) Redundant if possible Interface other nets
  5706. for feeds and downloads Off the shelf if possible Any ideas or
  5707. recommendations would be greatly appreciated.  Regards, Allan Oh yes
  5708. Email also
  5709.  
  5710. ------------------------------
  5711.  
  5712. From: JURGEN%UMass.BITNET@forsythe.stanford.edu
  5713. Date: Sat, 26 Mar 88  12:38:30 EST
  5714. Subject: Apple tech notes in IM archives
  5715.  
  5716. The Info-Mac archives have holes in their collection of Apple tech notes.
  5717. The following tech notes are not in the archives...
  5718.  
  5719.     TN 25, 31, 33, 35, 37, 38
  5720.     TN 47-49
  5721.     TN 77-83
  5722.     TN 107-117
  5723.  
  5724. Could some kindly soul please upload these?  Being a poor student I'm not
  5725. willing to spend the bucks for joining APDA just for the tech notes, and
  5726. then spending lots more bucks for back issues and subscriptions.  Ergo I've
  5727. been extremely glad that people have troubled to make them available here.
  5728.  
  5729. On a different note, the tech note collection in the archives is quite
  5730. disorganized.  For example, a lot of the files marked TNxx-yy.HQX do not
  5731. actually contain all the note in that range. (Hence some of the holes)
  5732.  
  5733. If there is interest, I'm willing to reorganize all of the tech notes
  5734. (once someone uploads the missing ones) into "StuffIt" archives of 10
  5735. or so each, and re-upload the whole set from day one.  (Info-Mac manager,
  5736. please comment on this proposition)
  5737.  
  5738. [
  5739. It sounds good to me.  I suppose Lance could even cope although he is the one
  5740. who would end up dealing with it and should have his say.  I'm going to send
  5741. this before asking him though, so we shall have to wait, although waiting is
  5742. necessary before we can get the missing tech notes too.  I would post xeroxes
  5743. of my copies, but they don't show up in StuffIt's SFGetFile dialog box.  :-)
  5744.  
  5745. Jon
  5746. ]
  5747.  
  5748.  - Jurgen E Botz
  5749.  
  5750.    Bitnet: Jurgen@UMass
  5751.    ARPA:   Jurgen%UMass.Bitnet@Mitvma.mit.edu
  5752.  
  5753. ------------------------------
  5754.  
  5755. End of INFO-MAC Digest
  5756. **********************
  5757. 27-Mar-88 13:12:09-PST,9040;000000000001
  5758. Mail-From: INFO-MAC-REQUEST created at 27-Mar-88 12:13:17
  5759. Date: 27 Mar 88 1213-PST
  5760. From: Moderators Jon Pugh, Dwayne Virnau, Lance Nakata
  5761. Reply-to: INFO-MAC@SUMEX-AIM.Stanford.EDU
  5762. Subject: INFO-MAC Digest   V6 #34
  5763. To: INFO-MAC@SUMEX-AIM.Stanford.EDU
  5764.  
  5765.  
  5766. INFO-MAC Digest          Monday, 28 Mar 1988       Volume 6 : Issue 34
  5767.  
  5768. Today's Topics:
  5769.                             I found a virus.
  5770.                          Wallpaper for the Mind
  5771.                           Mac II PRAM fix INIT
  5772.                              Dir-Acta-Ry 1.0
  5773.                           HyperBBS (in 9 parts)
  5774.                          VisionLab (in 7 parts)
  5775.                          McSink 4.2 (in 2 parts)
  5776.                                  Playsnd
  5777.                               FarceFilm #55
  5778.                               DeskPict INIT
  5779.  
  5780.  
  5781. ----------------------------------------------------------------------
  5782.  
  5783. Subject: I found a virus.
  5784. Date: Thu, 24 Mar 88 15:40:09 PST
  5785. From: James Jennings <jennings%tp5@rand-unix.ARPA>
  5786.  
  5787.  
  5788.         With all the talk about a Mac computer virus that was associated
  5789. with a 'nVIR' resource, I decided to check everything I down-loaded with
  5790. ResEdit before I ran it.
  5791.     I found one.
  5792.  
  5793. The infected program was identified by:
  5794.  
  5795. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>LIGHTSPEEDC-STDFILE-STDIO.HQX
  5796.  
  5797. I didn't probe any further so forgive me if I missed something.
  5798.  
  5799.                     James Jennings
  5800.  
  5801. [Moderator's Note:  Thank you for checking this one out, James.  We do not
  5802. have the time to do so ourselves.  To all people who submit binaries:  if
  5803. you have the chance, please check out anything you send to Info-Mac; do NOT
  5804. assume that our posting of a program means we've inspected it.  Also, if a
  5805. virus/Trojan Horse/time bomb gets by us, please send a note ASAP and warn
  5806. us!  I've already removed the aforementioned file.  It's sad that we have
  5807. to be so vigilant.  - Lance ]
  5808.  
  5809. ------------------------------
  5810.  
  5811. Date: Mon, 8 Feb 88 11:33:36 pst
  5812. From: John Peterson <jp@apple.apple.com>
  5813. Subject: Wallpaper for the Mind
  5814.  
  5815. This is a very fast implementation of the "Wallpaper for the mind"
  5816. algorithm that appeared in Scientific American's "Computer Recreations"
  5817. column (September, 1986).
  5818.  
  5819. Have fun with it,
  5820. John Peterson
  5821.  
  5822. [archived as
  5823.  
  5824. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>WALLPAPER-FOR-THE-MIND.HQX
  5825.  
  5826. - Lance ]
  5827.  
  5828. ------------------------------
  5829.  
  5830. Date: Sun, 6 Mar 88 15:22:51 EST
  5831. From: jas@cadre.dsl.pittsburgh.edu (Jeffrey A. Sullivan)
  5832. Subject: Mac II PRAM fix INIT
  5833.  
  5834. This file contains the PRAM patch for a Mac II in INIT form.  It (I don't
  5835. know how) keeps PRAM mess-ups resulting from bombs from causing your Mac II
  5836. to fail to recognize your hard disk at startup.
  5837.  
  5838. I received this from someone over the net, but can't find the name now to
  5839. give them credit.
  5840.  
  5841. To use this, just un-binhex it and put it in your system folder and reboot.
  5842. See the "get info" box for more info.
  5843.  
  5844. Jas
  5845.  
  5846. [archived as
  5847.  
  5848. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>INIT-MACII-PRAM-PATCH.HQX
  5849.  
  5850. - Lance ]
  5851.  
  5852. ------------------------------
  5853.  
  5854. Date: Mon 7 Mar 88 10:02:11-GMT
  5855. From: Jeff Shulman <SHULMAN@SDR>
  5856. Subject: Dir-Acta-Ry 1.0
  5857.  
  5858. [ Uploaded from Delphi by Jeff Shulman ]
  5859.  
  5860. Name: DIR-ACTA-RY 1.0
  5861. Date: 5-MAR-1988 21:15 by DDUNHAM
  5862.  
  5863. Dir-Acta-ry is a free program which makes an Acta document from a disk or
  5864. folder directory.  (Read Acta outlines with the Acta desk accessory, or the
  5865. free Acta Reader program.)  Dir-Acta-ry has many options, including "Get
  5866. Info" comments in the output.  It also converts documents from "by folder"
  5867. to "by file," making it handy for user group librarians.  Version 1.0 by
  5868. James Owen; original version by David Dunham.
  5869.  
  5870. [archived as
  5871.  
  5872. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>DIR-ACTA-RY-10.HQX
  5873.  
  5874. This version replaces version 0.41.
  5875.  
  5876. - Lance ]
  5877.  
  5878. ------------------------------
  5879.  
  5880. Date: Mon 7 Mar 88 10:05:06-GMT
  5881. From: Jeff Shulman <SHULMAN@SDR>
  5882. Subject: HyperBBS (in 9 parts)
  5883.  
  5884. [ Uploaded from Delphi by Jeff Shulman ]
  5885.  
  5886. Name: HYPERBBS 1.0
  5887. Date: 14-FEB-1988 18:17 by CHESLEY
  5888.  
  5889. HyperBBS is a bulletin board system written entirely in HyperCard. It's
  5890. primary purpose is to be so easy to set up and run that anyone who wants to
  5891. can be a Sysop. It's secondary purpose is to allow Sysops to tailor the BBS
  5892. however they like.
  5893.  
  5894. [archived as
  5895.  
  5896. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>HYPERCARD-BBS-10-PART1.HQX
  5897. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>HYPERCARD-BBS-10-PART2.HQX
  5898. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>HYPERCARD-BBS-10-PART3.HQX
  5899. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>HYPERCARD-BBS-10-PART4.HQX
  5900. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>HYPERCARD-BBS-10-PART5.HQX
  5901. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>HYPERCARD-BBS-10-PART6.HQX
  5902. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>HYPERCARD-BBS-10-PART7.HQX
  5903. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>HYPERCARD-BBS-10-PART8.HQX
  5904. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>HYPERCARD-BBS-10-PART9.HQX
  5905.  
  5906. - Lance ]
  5907.  
  5908. ------------------------------
  5909.  
  5910. Date: Mon 7 Mar 88 10:24:06-GMT
  5911. From: Jeff Shulman <SHULMAN@SDR>
  5912. Subject: VisionLab (in 7 parts)
  5913.  
  5914. [ Uploaded from Delphi by Jeff Shulman ]
  5915.  
  5916. Name: VISION LAB
  5917. Date: 3-MAR-1988 01:50 by JONES
  5918.  
  5919. [ All files updated 3-MAR-1988 01:50 by JONES.  Version 0.67 adds a few new
  5920. features and fixes a couple of bugs. ]
  5921.  
  5922. Vision Lab - For all Macs with at least the 128ROMs.  Works best on a Mac
  5923. II.  Opens Thunder Scan, MacPaint, PICT, and GIF files.  Also works with
  5924. the Koala MacVision hardware.  (Vision Lab replaces SuperVision)
  5925.  
  5926. [archived as
  5927.  
  5928. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>VISION-LAB-067-PART1.HQX
  5929. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>VISION-LAB-067-PART2.HQX
  5930. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>VISION-LAB-067-PART3.HQX
  5931. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>VISION-LAB-067-PART4.HQX
  5932. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>VISION-LAB-067-PART5.HQX
  5933. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>VISION-LAB-067-PART6.HQX
  5934. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>VISION-LAB-067-PART7.HQX
  5935.  
  5936. This version replaces the previous version of Vision Lab and SuperVision
  5937. 0.41.
  5938.  
  5939. - Lance ]
  5940.  
  5941. ------------------------------
  5942.  
  5943. Date: Thu 10 Mar 88 08:50:36-GMT
  5944. From: Jeff Shulman <SHULMAN@SDR>
  5945. Subject: McSink 4.2 (in 2 parts)
  5946.  
  5947. [ Uploaded from Delphi by Jeff Shulman ]
  5948.  
  5949. Name: MCSINK V4.2
  5950. Date: 9-MAR-1988 19:01 by DMCWHERTER
  5951.  
  5952. [ Updated 9-MAR-1988 19:01 by DMCWHERTER to version 4.2. Fixes all reported
  5953. bugs in V4.1. ]
  5954.  
  5955. McSink V4.1. A shareware text editing and file access DA. This version
  5956. supports >32k text files and up to 16 windows. Many unusual text editing
  5957. commands. In StuffIt format. Docs in MacWrite format.
  5958.  
  5959. [archived as
  5960.  
  5961. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>DA-MCSINK-42-PART1.HQX
  5962. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>DA-MCSINK-42-PART2.HQX
  5963.  
  5964. - Lance ]
  5965.  
  5966. ------------------------------
  5967.  
  5968. Date: Thu, 10 Mar 88 15:53 GMT
  5969. From: Ralph <MartinRR%cardiff.ac.uk@NSS.Cs.Ucl.AC.UK>
  5970. Subject: Playsnd
  5971.  
  5972. Here is a little shareware utility I have knocked up for playing 'snd '
  5973. resources.  Initially, the snd's from the system file are loaded, and you
  5974. can get snd's from other files by using open in the file menu.  Just choose
  5975. the snd you want to hear in the sounds menu.  This will only work on a mac
  5976. II, to save people from needlessly downloading it.  Ralph
  5977.  
  5978. [archived as
  5979.  
  5980. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>UTILITY-PLAYSND.HQX
  5981.  
  5982. - Lance ]
  5983.  
  5984. ------------------------------
  5985.  
  5986. Date: Fri 11 Mar 88 09:24:59-GMT
  5987. From: Jeff Shulman <SHULMAN@SDR>
  5988. Subject: FarceFilm #55
  5989.  
  5990. [ Uploaded from Delphi by Jeff Shulman ]
  5991.  
  5992. Name: FARCEFILM 55.FILM
  5993. Date: 10-MAR-1988 19:53 by ARTSFARCES
  5994.  
  5995. This is FarceFilm 55 for the week of 11 March 1988.  It's in MicroFilm
  5996. format and as such requires MicroFilm Reader V1.0 or later for use.  This
  5997. week's topic is "CDing the Future."
  5998.  
  5999. [archived as
  6000.  
  6001. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>ARTS-FARCES-FILM-55.HQX
  6002.  
  6003. - Lance ]
  6004.  
  6005. ------------------------------
  6006.  
  6007. Date: Sat, 5 Mar 88 20:26:21 PST
  6008. From: dplatt@coherent.com (Dave Platt)
  6009. Subject: DeskPict INIT
  6010.  
  6011. This is the DeskPict INIT.  I think its Read Me file says it best:
  6012.  
  6013.         ----
  6014.  
  6015. This is my first init to go public anywhere so hopefully things will work
  6016. out.  This is an init that will put up a color background picture on a Mac
  6017. II. So far it seems to work on any size monitor, any number, and any depth.
  6018. The picture put on the screen has to be in a file named StartUpScreen or
  6019. DeskPicture and contain a PICT resource of ID 0 in the resource fork (i.e.
  6020. A normal Mac II startup screen file or a GrayView document).  The picture
  6021. in the file named DeskPicture will be scaled to the size of the main
  6022. monitor and will be prefered over that of the the startup screen (which is
  6023. not scaled but centered). The init was also packed with StuffIt and I am
  6024. asking no money for it. Enjoy and send any praise, flames, comments, or
  6025. wish lists to me.
  6026.  
  6027. Clay Maeckel
  6028. CompuServe:     73057,255
  6029. UUCP:           {decwrl!apple,voder,sun,portal}!claris!clay
  6030. AppleLink:      Maeckel1
  6031.  
  6032. [archived as
  6033.  
  6034. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>INIT-DESKPICT.HQX
  6035.  
  6036. - Lance ]
  6037.  
  6038. ------------------------------
  6039.  
  6040. End of INFO-MAC Digest
  6041. **********************
  6042.